You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@
5
5
6
6
This example was created for the [2021 fall lecture series](https://datascience.stanford.edu/news/center-open-and-reproducible-science-cores-fall-lecture-series) of [Stanford's Center for Open and REproducible Science (CORES)](https://datascience.stanford.edu/cores).
7
7
8
-
The goal of this analysis is to study the effect of varying different hyper-parameters of the training of a simple classification model on its performance in sklearn's handwritten digit dataset.
8
+
The goal of this analysis is to study the effect of varying different hyper-parameters of the training of a simple classification model on its performance in scikit-learn's handwritten digit dataset.
9
9
10
-
Specifically, we will study the effect of varying the learning rate, regularisation strength, number of gradient descent iterations, and random shuffling of the data on the cross-validated performance of [sklearn's default linear one-vs-rest SVM classifier](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.SGDClassifier.html).
10
+
Specifically, we will study the effect of varying the learning rate, regularisation strength, number of gradient descent iterations, and random shuffling of the data on the cross-validated performance of [scikit-learn's default linear one-vs-rest SVM classifier](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.SGDClassifier.html).
11
11
12
12
Each hyper-parameter is varied individually, while all other hyper-parameters are set to default values (see [scripts/evaluate_hyper_params_effect.py](scripts/evaluate_hyper_params_effect.py))
13
13
@@ -21,7 +21,7 @@ Each hyper-parameter is varied individually, while all other hyper-parameters ar
21
21
├── pyproject.toml <- Lists all dependencies
22
22
├── README.md <- This README file.
23
23
├── data/
24
-
| └── <- A copy of the handwritten digit dataset provided by sklearn
24
+
| └── <- A copy of the handwritten digit dataset provided by scikit-learn
25
25
|
26
26
├── results/
27
27
| ├── estimates/
@@ -46,6 +46,12 @@ Each hyper-parameter is varied individually, while all other hyper-parameters ar
46
46
└── setup.py <- makes project pip-installable (pip install -e .) so that 'src' can be imported
47
47
```
48
48
49
+
## Data description
50
+
51
+
We use the handwritten digits dataset provided by [scikit-learn](https://scikit-learn.org/stable/). For details on this dataset, see scikit-learn's documentation:
0 commit comments