Update README.md
Browse files
README.md
CHANGED
|
@@ -105,8 +105,8 @@ When graphing the residuals we can see a much more distinct linear relationship,
|
|
| 105 |
Start by making a notebook for your eval, then use this starter code Dr. Brown provided:
|
| 106 |
|
| 107 |
from huggingface_hub import hf_hub_download
|
| 108 |
-
hf_hub_download(repo_id="CSC310-fall25/training_regression_wine", filename="
|
| 109 |
-
dt_loaded = sio.load('
|
| 110 |
|
| 111 |
from here you can use an scikit-learn estimator to do the rest of your evaluation.
|
| 112 |
|
|
|
|
| 105 |
Start by making a notebook for your eval, then use this starter code Dr. Brown provided:
|
| 106 |
|
| 107 |
from huggingface_hub import hf_hub_download
|
| 108 |
+
hf_hub_download(repo_id="CSC310-fall25/training_regression_wine", filename="regression.pkl",local_dir='.')
|
| 109 |
+
dt_loaded = sio.load('regression.pkl')
|
| 110 |
|
| 111 |
from here you can use an scikit-learn estimator to do the rest of your evaluation.
|
| 112 |
|