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: docs/parameters.rst
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,9 @@ Reference:
120
120
B. Lakshminarayanan, A. Pritzel, C. Blundell., Simple and Scalable
121
121
Predictive Uncertainty Estimation using Deep Ensembles, NIPS 2017.
122
122
123
+
.. warning::
124
+
When your base estimator is under-fit on the dataset, it is not recommended to use the :mod:`AdversarialTrainingClassifier` or :mod:`AdversarialTrainingRegressor`, because they may deteriorate the performance further.
Copy file name to clipboardExpand all lines: docs/quick_start.rst
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,9 @@ You can use the latest version of Ensemble-PyTorch with the following command:
15
15
16
16
Ensemble-PyTorch is designed to be portable and has very small package dependencies. It is recommended to use the Python environment and PyTorch installed from `Anaconda <https://www.anaconda.com/>`__. In this case, there is no need to run the third command in the code snippet above.
17
17
18
+
.. tip::
19
+
Ensemble-PyTorch is close to the end of the Beta stage. It will soon be uploaded to `PyPI <https://pypi.org/>`__.
20
+
18
21
Define Your Base Estimator
19
22
--------------------------
20
23
@@ -62,8 +65,8 @@ Ensemble-PyTorch uses a global logger to track and print the intermediate inform
62
65
63
66
Using the logger, all intermediate information will be printed on the command line and saved to the specified text file: classification_mnist_mlp.
64
67
65
-
Choose the Ensemble Method
66
-
--------------------------
68
+
Choose the Ensemble
69
+
-------------------
67
70
68
71
After defining the base estimator, we can then wrap it using one of ensemble methods available in Ensemble-PyTorch. Different methods have very similar APIs, take the ``VotingClassifier`` as an example:
0 commit comments