Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
5f4a8e8
1
Parent(s):
705d044
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def predict(file):
|
|
27 |
|
28 |
# Preparar dados para predição
|
29 |
X_new = np.array(input_df)
|
30 |
-
X_new_with_constant = np.insert(X_new, 0,
|
31 |
|
32 |
# Fazer previsões
|
33 |
y_pred = results.predict(X_new_with_constant)
|
|
|
27 |
|
28 |
# Preparar dados para predição
|
29 |
X_new = np.array(input_df)
|
30 |
+
X_new_with_constant = np.insert(X_new, 0, 1, axis=1)
|
31 |
|
32 |
# Fazer previsões
|
33 |
y_pred = results.predict(X_new_with_constant)
|