Instructions to use kevinkyi/Homework2_Classical_ML with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use kevinkyi/Homework2_Classical_ML with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("kevinkyi/Homework2_Classical_ML", "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
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,7 +19,7 @@ This model was developed as part of a class assignment on designing and deployin
|
|
| 19 |
It demonstrates the use of AutoML (AutoGluon Tabular) to build a binary classifier on football receiver stats.
|
| 20 |
|
| 21 |
## Dataset
|
| 22 |
-
- **Source:** <classmate name + Hugging Face dataset link if public>
|
| 23 |
- **Split:** Stratified Train/Test = 80/20 on the **original** split.
|
| 24 |
- **Features:** ['Tgt', 'Rec', 'Yds', 'YBC_per_R', 'YAC_per_R', 'ADOT', 'Drop_pct', 'Rat']
|
| 25 |
- **Target:** `Elite` (0/1)
|
|
|
|
| 19 |
It demonstrates the use of AutoML (AutoGluon Tabular) to build a binary classifier on football receiver stats.
|
| 20 |
|
| 21 |
## Dataset
|
| 22 |
+
- **Source:** [<classmate name + Hugging Face dataset link if public> ](https://huggingface.co/datasets/james-kramer/receiverstats)
|
| 23 |
- **Split:** Stratified Train/Test = 80/20 on the **original** split.
|
| 24 |
- **Features:** ['Tgt', 'Rec', 'Yds', 'YBC_per_R', 'YAC_per_R', 'ADOT', 'Drop_pct', 'Rat']
|
| 25 |
- **Target:** `Elite` (0/1)
|