train-model. This revision (main)
is the dev environment -- updates on every successful training run
that clears the RMSE gate. See git tags test / prod for promoted,
human-approved revisions.random_forest1{
2 "mae": 7706.09884306474,
3 "rmse": 15581.153199533625,
4 "r2": 0.9038683925855734,
5 "n_samples": 23642
6}1from huggingface_hub import hf_hub_download
2import joblib
3
4# revision: "main" (dev), "test", or "prod"
5path = hf_hub_download(repo_id="blusse7/car-price-predictor", filename="model.joblib", revision="main")
6model = joblib.load(path)