Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -49,7 +49,7 @@ def predict_sales():
|
|
| 49 |
drop_first=True,
|
| 50 |
);
|
| 51 |
print("The data entered are below")
|
| 52 |
-
print(
|
| 53 |
|
| 54 |
# Make a Sales prediction using the trained model
|
| 55 |
prediction = model.predict(encoded_new_data).tolist()[0]
|
|
|
|
| 49 |
drop_first=True,
|
| 50 |
);
|
| 51 |
print("The data entered are below")
|
| 52 |
+
print(encoded_new_data)
|
| 53 |
|
| 54 |
# Make a Sales prediction using the trained model
|
| 55 |
prediction = model.predict(encoded_new_data).tolist()[0]
|