Instructions to use datamatters24/filmpriceguide-wave-predictor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use datamatters24/filmpriceguide-wave-predictor with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("datamatters24/filmpriceguide-wave-predictor", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
Film Price Guide — Wave Price Predictor
Binary classifier that estimates whether a title’s sold price will rise >10% within 30 days.
Built for Film Price Guide / RetroPrice collector market data.
Model details
| Field | Value |
|---|---|
| Version | v4 |
| Algorithm | RandomForest |
| Target | price_up_10pct_in_30d |
| Trained at | 2026-08-15T22:03:38.267530 |
| Training samples | 24609 |
| Holdout samples | 6153 |
| Holdout AUC | 0.6443 |
| CV AUC (mean) | 0.6618 |
Artifacts
wave_prediction_model.pkl— calibrated sklearn classifierwave_scaler.pkl—StandardScalerfit on training featuresmodel_metrics.json— training metadata + feature list
Features
momentum_7dmomentum_14dmomentum_30dmomentum_60dmomentum_90dmomentum_accellog_density_7dlog_density_30dlog_listing_countlog_sold_countebay_price_velocityscarcity_scoreconfidence_scorewave_scorewave_score_deltalisting_growth_ratelog_reddit_mentionslog_reddit_scoregraded_countlog_lbxd_fan_countlbxd_avg_ratingseasonal_multiplierseason_encoded
Top feature importances
momentum_30d: 0.1552momentum_14d: 0.1405momentum_60d: 0.1037momentum_90d: 0.0724log_lbxd_fan_count: 0.0605momentum_accel: 0.0599momentum_7d: 0.0568lbxd_avg_rating: 0.0553
Intended use
- Internal Film Price Guide wave / “heating up” rankings
- Research on physical-media sold-price dynamics
Not financial advice. Sold comps are noisy; treat probabilities as directional signals.
How to load
import json, pickle
from huggingface_hub import hf_hub_download
repo = "datamatters24/filmpriceguide-wave-predictor"
model = pickle.load(open(hf_hub_download(repo, "wave_prediction_model.pkl"), "rb"))
scaler = pickle.load(open(hf_hub_download(repo, "wave_scaler.pkl"), "rb"))
metrics = json.load(open(hf_hub_download(repo, "model_metrics.json")))
Sync
Uploaded by scripts/sync_model_to_hf.py from the RetroPrice training pipeline.
Last card generated: 2026-08-21 01:00 UTC
- Downloads last month
- -