Skip to content

Commit f002c93

Browse files
author
Github Actions
committed
nabenabe0928: [feat] Add __str__ to autoPyTorchEnum (#405)
1 parent e24dcce commit f002c93

31 files changed

+177
-169
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
2.4 KB
Loading
3.4 KB
Loading
-79 Bytes
Loading
-1.39 KB
Loading

development/_sources/examples/20_basics/example_image_classification.rst.txt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,17 @@ Image Classification
8585
Pipeline Random Config:
8686
________________________________________
8787
Configuration(values={
88-
'image_augmenter:GaussianBlur:sigma_min': 0.10327976032627761,
89-
'image_augmenter:GaussianBlur:sigma_offset': 0.45340318994125184,
90-
'image_augmenter:GaussianBlur:use_augmenter': True,
91-
'image_augmenter:GaussianNoise:sigma_offset': 0.643177287015827,
92-
'image_augmenter:GaussianNoise:use_augmenter': True,
93-
'image_augmenter:RandomAffine:use_augmenter': False,
94-
'image_augmenter:RandomCutout:p': 0.58899963145322,
88+
'image_augmenter:GaussianBlur:use_augmenter': False,
89+
'image_augmenter:GaussianNoise:use_augmenter': False,
90+
'image_augmenter:RandomAffine:rotate': 237,
91+
'image_augmenter:RandomAffine:scale_offset': 0.32734086551151986,
92+
'image_augmenter:RandomAffine:shear': 43,
93+
'image_augmenter:RandomAffine:translate_percent_offset': 0.2150833219469362,
94+
'image_augmenter:RandomAffine:use_augmenter': True,
95+
'image_augmenter:RandomCutout:p': 0.6425251463645631,
9596
'image_augmenter:RandomCutout:use_augmenter': True,
96-
'image_augmenter:Resize:use_augmenter': True,
97-
'image_augmenter:ZeroPadAndCrop:percent': 0.062191847988016136,
97+
'image_augmenter:Resize:use_augmenter': False,
98+
'image_augmenter:ZeroPadAndCrop:percent': 0.2638607299100123,
9899
'normalizer:__choice__': 'ImageNormalizer',
99100
})
100101

@@ -175,7 +176,7 @@ Image Classification
175176
176177
.. rst-class:: sphx-glr-timing
177178

178-
**Total running time of the script:** ( 0 minutes 8.858 seconds)
179+
**Total running time of the script:** ( 0 minutes 8.801 seconds)
179180

180181

181182
.. _sphx_glr_download_examples_20_basics_example_image_classification.py:

development/_sources/examples/20_basics/example_tabular_classification.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Search for an ensemble of machine learning algorithms
134134
.. code-block:: none
135135
136136
137-
<autoPyTorch.api.tabular_classification.TabularClassificationTask object at 0x7fdd8a34d640>
137+
<autoPyTorch.api.tabular_classification.TabularClassificationTask object at 0x7fcb49398130>
138138
139139
140140
@@ -196,7 +196,7 @@ Print the final ensemble performance
196196
197197
.. rst-class:: sphx-glr-timing
198198

199-
**Total running time of the script:** ( 5 minutes 27.922 seconds)
199+
**Total running time of the script:** ( 5 minutes 32.091 seconds)
200200

201201

202202
.. _sphx_glr_download_examples_20_basics_example_tabular_classification.py:

development/_sources/examples/20_basics/example_tabular_regression.rst.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Search for an ensemble of machine learning algorithms
125125
.. code-block:: none
126126
127127
128-
<autoPyTorch.api.tabular_regression.TabularRegressionTask object at 0x7fde27812430>
128+
<autoPyTorch.api.tabular_regression.TabularRegressionTask object at 0x7fcbe670c430>
129129
130130
131131
@@ -168,13 +168,13 @@ Print the final ensemble performance
168168
| 3 | None | LGBMLearner | 0.02 |
169169
| 4 | SimpleImputer,Variance Threshold,NoCoalescer,OneHotEncoder,StandardScaler,NoFeaturePreprocessing | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.02 |
170170
autoPyTorch results:
171-
Dataset name: 0da2f587-9ae4-11ec-87e6-b1d9b8f13636
171+
Dataset name: 3f905480-9ba1-11ec-87e5-c7420ab3e9b2
172172
Optimisation Metric: r2
173173
Best validation score: 0.8669094525651709
174-
Number of target algorithm runs: 22
174+
Number of target algorithm runs: 23
175175
Number of successful target algorithm runs: 17
176176
Number of crashed target algorithm runs: 3
177-
Number of target algorithms that exceeded the time limit: 2
177+
Number of target algorithms that exceeded the time limit: 3
178178
Number of target algorithms that exceeded the memory limit: 0
179179
180180
@@ -184,7 +184,7 @@ Print the final ensemble performance
184184
185185
.. rst-class:: sphx-glr-timing
186186

187-
**Total running time of the script:** ( 5 minutes 49.239 seconds)
187+
**Total running time of the script:** ( 5 minutes 55.597 seconds)
188188

189189

190190
.. _sphx_glr_download_examples_20_basics_example_tabular_regression.py:

development/_sources/examples/20_basics/sg_execution_times.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
Computation times
77
=================
8-
**11:26.018** total execution time for **examples_20_basics** files:
8+
**11:36.489** total execution time for **examples_20_basics** files:
99

1010
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
11-
| :ref:`sphx_glr_examples_20_basics_example_tabular_regression.py` (``example_tabular_regression.py``) | 05:49.239 | 0.0 MB |
11+
| :ref:`sphx_glr_examples_20_basics_example_tabular_regression.py` (``example_tabular_regression.py``) | 05:55.597 | 0.0 MB |
1212
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
13-
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:27.922 | 0.0 MB |
13+
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:32.091 | 0.0 MB |
1414
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
15-
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:08.858 | 0.0 MB |
15+
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:08.801 | 0.0 MB |
1616
+--------------------------------------------------------------------------------------------------------------+-----------+--------+

0 commit comments

Comments
 (0)