Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
705d044
1
Parent(s):
2db9692
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, 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, 0.9999, axis=1)
|
31 |
|
32 |
# Fazer previsões
|
33 |
y_pred = results.predict(X_new_with_constant)
|