MohammedSohail commited on
Commit
9861fb6
·
verified ·
1 Parent(s): c0af298

Added model card (README.md)

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -29,12 +29,11 @@ import pandas as pd
29
 
30
  model_path = hf_hub_download(
31
  repo_id="MohammedSohail/engine_maintenance_model",
32
- filename="models/best_model.pkl" # Corrected path to match previous upload
33
  )
34
 
35
  model = joblib.load(model_path)
36
 
37
- # Example prediction (assuming `new_data` is a pandas DataFrame with features)
38
  # new_data = pd.DataFrame([
39
  # [750, 3.5, 6.0, 2.5, 80.0, 75.0] # Example sensor values
40
  # ], columns=['Engine rpm', 'Lub oil pressure', 'Fuel pressure', 'Coolant pressure', 'lub oil temp', 'Coolant temp'])
 
29
 
30
  model_path = hf_hub_download(
31
  repo_id="MohammedSohail/engine_maintenance_model",
32
+ filename="models/best_model.pkl"
33
  )
34
 
35
  model = joblib.load(model_path)
36
 
 
37
  # new_data = pd.DataFrame([
38
  # [750, 3.5, 6.0, 2.5, 80.0, 75.0] # Example sensor values
39
  # ], columns=['Engine rpm', 'Lub oil pressure', 'Fuel pressure', 'Coolant pressure', 'lub oil temp', 'Coolant temp'])