Spaces:
Sleeping
Sleeping
Commit
·
3ffe66f
1
Parent(s):
919ac0a
tst inference
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ with open(local_filename, 'wb') as f:
|
|
| 17 |
# Load the model
|
| 18 |
model = joblib.load(local_filename)
|
| 19 |
|
| 20 |
-
test_data = pd.DataFrame({'location_found_elevation': [
|
| 21 |
|
| 22 |
output = model.predict(test_data)
|
| 23 |
|
|
|
|
| 17 |
# Load the model
|
| 18 |
model = joblib.load(local_filename)
|
| 19 |
|
| 20 |
+
test_data = pd.DataFrame({'location_found_elevation': [700, 500, 300], 'situation': ['Lost', 'Stranded', 'Lost']})
|
| 21 |
|
| 22 |
output = model.predict(test_data)
|
| 23 |
|