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
model = ensemble_method(estimator=base_estimator, # type of base estimator
21
31
n_estimators=10, # number of base estimators
@@ -35,13 +45,13 @@ model.fit(train_loader)
35
45
model.predict(test_loader)
36
46
```
37
47
38
-
## Experiment results
48
+
## Benchmarks
39
49
40
50
***Classification on CIFAR-10**
41
51
* The table below presents the classification accuracy of different ensemble classifiers on the testing data of **CIFAR-10**
42
52
* Each classifier uses **10** LeNet-5 model (with RELU activation and Dropout) as the base estimators
43
53
* Each base estimator is trained over **100** epochs, with batch size **128**, learning rate **1e-3**, and weight decay **5e-4**
44
-
* Experiment results can be reproduced by running `./script/classification_cifar10_cnn.py`
54
+
* Experiment results can be reproduced by running `./examples/classification_cifar10_cnn.py`
45
55
46
56
| Model Name | Params (MB) | Testing Acc (%) | Improvement (%) |
47
57
| ------ | ------ | ------ | ------ |
@@ -55,7 +65,7 @@ model.predict(test_loader)
55
65
* The table below presents the mean squared error (MSE) of different ensemble regressors on the testing data of **YearPredictionMSD**
56
66
* Each regressor uses **10** multi-layered perceptron (MLP) model (with RELU activation and Dropout) as the base estimators, and the network architecture is fixed as `Input-128-128-Output`
57
67
* Each base estimator is trained over **50** epochs, with batch size **256**, learning rate **1e-3**, and weight decay **5e-4**
58
-
* Experiment results can be reproduced by running `./script/regression_YearPredictionMSD_mlp.py`
68
+
* Experiment results can be reproduced by running `./examples/regression_YearPredictionMSD_mlp.py`
59
69
60
70
| Model Name | Params (MB) | Testing MSE | Improvement |
0 commit comments