stummala521 commited on
Commit
3ffe66f
·
1 Parent(s): 919ac0a

tst inference

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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': [0, 0, 0], 'situation': ['fake', 'fake', 'fake']})
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