Skip to content

Commit 667fbf9

Browse files
author
Github Actions
committed
nabenabe0928: [feat] Add new task inference for APT (#386)
1 parent fc0c9fe commit 667fbf9

31 files changed

+249
-257
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-754 Bytes
Loading
-202 Bytes
Loading
139 Bytes
Loading
130 Bytes
Loading

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

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,26 +85,23 @@ Image Classification
8585
Pipeline Random Config:
8686
________________________________________
8787
Configuration(values={
88-
'image_augmenter:GaussianBlur:use_augmenter': False,
89-
'image_augmenter:GaussianNoise:sigma_offset': 2.925784534700399,
90-
'image_augmenter:GaussianNoise:use_augmenter': True,
91-
'image_augmenter:RandomAffine:rotate': 79,
92-
'image_augmenter:RandomAffine:scale_offset': 0.3303982552097816,
93-
'image_augmenter:RandomAffine:shear': 22,
94-
'image_augmenter:RandomAffine:translate_percent_offset': 0.068262359976932,
95-
'image_augmenter:RandomAffine:use_augmenter': True,
88+
'image_augmenter:GaussianBlur:sigma_min': 1.5935371448528923,
89+
'image_augmenter:GaussianBlur:sigma_offset': 0.7844116418329459,
90+
'image_augmenter:GaussianBlur:use_augmenter': True,
91+
'image_augmenter:GaussianNoise:use_augmenter': False,
92+
'image_augmenter:RandomAffine:use_augmenter': False,
9693
'image_augmenter:RandomCutout:use_augmenter': False,
97-
'image_augmenter:Resize:use_augmenter': False,
98-
'image_augmenter:ZeroPadAndCrop:percent': 0.019686612530780023,
99-
'normalizer:__choice__': 'NoNormalizer',
94+
'image_augmenter:Resize:use_augmenter': True,
95+
'image_augmenter:ZeroPadAndCrop:percent': 0.44360967675348173,
96+
'normalizer:__choice__': 'ImageNormalizer',
10097
})
10198

10299
Fitting the pipeline...
103100
________________________________________
104101
ImageClassificationPipeline
105102
________________________________________
106103
0-) normalizer:
107-
NoNormalizer
104+
ImageNormalizer
108105

109106
1-) preprocessing:
110107
EarlyPreprocessing
@@ -176,7 +173,7 @@ Image Classification
176173
177174
.. rst-class:: sphx-glr-timing
178175

179-
**Total running time of the script:** ( 0 minutes 6.576 seconds)
176+
**Total running time of the script:** ( 0 minutes 6.133 seconds)
180177

181178

182179
.. _sphx_glr_download_examples_20_basics_example_image_classification.py:

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

Lines changed: 5 additions & 5 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 0x7fc57dba9700>
137+
<autoPyTorch.api.tabular_classification.TabularClassificationTask object at 0x7fe3b78f6550>
138138
139139
140140
@@ -180,10 +180,10 @@ Print the final ensemble performance
180180
Dataset name: Australian
181181
Optimisation Metric: accuracy
182182
Best validation score: 0.8713450292397661
183-
Number of target algorithm runs: 24
184-
Number of successful target algorithm runs: 21
183+
Number of target algorithm runs: 22
184+
Number of successful target algorithm runs: 20
185185
Number of crashed target algorithm runs: 2
186-
Number of target algorithms that exceeded the time limit: 1
186+
Number of target algorithms that exceeded the time limit: 0
187187
Number of target algorithms that exceeded the memory limit: 0
188188
189189
@@ -193,7 +193,7 @@ Print the final ensemble performance
193193
194194
.. rst-class:: sphx-glr-timing
195195

196-
**Total running time of the script:** ( 5 minutes 16.919 seconds)
196+
**Total running time of the script:** ( 5 minutes 31.550 seconds)
197197

198198

199199
.. _sphx_glr_download_examples_20_basics_example_tabular_classification.py:

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

Lines changed: 7 additions & 7 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 0x7fc61981a700>
128+
<autoPyTorch.api.tabular_regression.TabularRegressionTask object at 0x7fe45362b700>
129129
130130
131131
@@ -167,13 +167,13 @@ Print the final ensemble performance
167167
| 2 | SimpleImputer,Variance Threshold,NoCoalescer,OneHotEncoder,StandardScaler,NoFeaturePreprocessing | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.1 |
168168
| 3 | None | LGBMLearner | 0.04 |
169169
autoPyTorch results:
170-
Dataset name: e30391f0-94ca-11ec-8816-6597b230fd31
170+
Dataset name: 074d83be-94f4-11ec-87fb-d5821471ed5e
171171
Optimisation Metric: r2
172172
Best validation score: 0.8670098636440993
173-
Number of target algorithm runs: 28
174-
Number of successful target algorithm runs: 27
175-
Number of crashed target algorithm runs: 1
176-
Number of target algorithms that exceeded the time limit: 0
173+
Number of target algorithm runs: 24
174+
Number of successful target algorithm runs: 23
175+
Number of crashed target algorithm runs: 0
176+
Number of target algorithms that exceeded the time limit: 1
177177
Number of target algorithms that exceeded the memory limit: 0
178178
179179
@@ -183,7 +183,7 @@ Print the final ensemble performance
183183
184184
.. rst-class:: sphx-glr-timing
185185

186-
**Total running time of the script:** ( 5 minutes 27.461 seconds)
186+
**Total running time of the script:** ( 5 minutes 44.634 seconds)
187187

188188

189189
.. _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-
**10:50.955** total execution time for **examples_20_basics** files:
8+
**11:22.317** 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:27.461 | 0.0 MB |
11+
| :ref:`sphx_glr_examples_20_basics_example_tabular_regression.py` (``example_tabular_regression.py``) | 05:44.634 | 0.0 MB |
1212
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
13-
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:16.919 | 0.0 MB |
13+
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:31.550 | 0.0 MB |
1414
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
15-
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:06.576 | 0.0 MB |
15+
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:06.133 | 0.0 MB |
1616
+--------------------------------------------------------------------------------------------------------------+-----------+--------+

0 commit comments

Comments
 (0)