Views
No views yet
pothole / no_pothole)train.py)predict.py)1from huggingface_hub import hf_hub_download
2import joblib
3
4model_path = hf_hub_download(
5 repo_id="rupesh002/pothole_detection_model",
6 filename="model.pkl",
7 repo_type="model"
8)
9
10model = joblib.load(model_path)
11---
12🏷️ Author
13
14Rupesh Bhardwaj
15Machine Learning Enthusiast