luanzitto commited on
Commit
5048a8c
1 Parent(s): 88001d2

Versão Final

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,11 +4,11 @@ import pandas as pd
4
  from SRLib.Utilities import encoding
5
 
6
 
7
- def predict( Fare, Age, Sex, Pclass, SibSp ):
8
  df_raw = pd.DataFrame(
9
  {
10
  'Fare' : Fare,
11
- 'Age' : Age,
12
  'Sex' : Sex,
13
  'Pclass' : Pclass,
14
  'SibSp' : SibSp
 
4
  from SRLib.Utilities import encoding
5
 
6
 
7
+ def predict( Fare, Idade, Sex, Pclass, SibSp ):
8
  df_raw = pd.DataFrame(
9
  {
10
  'Fare' : Fare,
11
+ 'Age' : Idade,
12
  'Sex' : Sex,
13
  'Pclass' : Pclass,
14
  'SibSp' : SibSp