Skip to content

Commit 235ed6c

Browse files
author
Github Actions
committed
dengdifan: fix dist twine check for github (automl#439)
1 parent f1f2435 commit 235ed6c

31 files changed

+263
-265
lines changed
Binary file not shown.
Binary file not shown.
-2.01 KB
Loading
-862 Bytes
Loading
1.69 KB
Loading
1.44 KB
Loading

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

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,15 @@ Image Classification
8585
Pipeline Random Config:
8686
________________________________________
8787
Configuration(values={
88-
'image_augmenter:GaussianBlur:use_augmenter': False,
88+
'image_augmenter:GaussianBlur:sigma_min': 1.321282449895124,
89+
'image_augmenter:GaussianBlur:sigma_offset': 1.170627862969532,
90+
'image_augmenter:GaussianBlur:use_augmenter': True,
8991
'image_augmenter:GaussianNoise:use_augmenter': False,
90-
'image_augmenter:RandomAffine:rotate': 25,
91-
'image_augmenter:RandomAffine:scale_offset': 0.17911084673615535,
92-
'image_augmenter:RandomAffine:shear': 29,
93-
'image_augmenter:RandomAffine:translate_percent_offset': 0.2595162834252603,
94-
'image_augmenter:RandomAffine:use_augmenter': True,
95-
'image_augmenter:RandomCutout:p': 0.41657143992832846,
92+
'image_augmenter:RandomAffine:use_augmenter': False,
93+
'image_augmenter:RandomCutout:p': 0.924326689627855,
9694
'image_augmenter:RandomCutout:use_augmenter': True,
9795
'image_augmenter:Resize:use_augmenter': False,
98-
'image_augmenter:ZeroPadAndCrop:percent': 0.2504071930090588,
96+
'image_augmenter:ZeroPadAndCrop:percent': 0.2936727016383677,
9997
'normalizer:__choice__': 'NoNormalizer',
10098
})
10199

@@ -176,7 +174,7 @@ Image Classification
176174
177175
.. rst-class:: sphx-glr-timing
178176

179-
**Total running time of the script:** ( 0 minutes 5.591 seconds)
177+
**Total running time of the script:** ( 0 minutes 5.420 seconds)
180178

181179

182180
.. _sphx_glr_download_examples_20_basics_example_image_classification.py:

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

Lines changed: 13 additions & 11 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 0x7fdc1b398100>
137+
<autoPyTorch.api.tabular_classification.TabularClassificationTask object at 0x7f41d91834f0>
138138
139139
140140
@@ -165,23 +165,25 @@ Print the final ensemble performance
165165

166166
.. code-block:: none
167167
168-
{'accuracy': 0.8670520231213873}
168+
{'accuracy': 0.861271676300578}
169169
| | Preprocessing | Estimator | Weight |
170170
|---:|:-------------------------------------------------------------------------------------------------|:----------------------------------------------------------------|---------:|
171-
| 0 | None | CBLearner | 0.32 |
172-
| 1 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,QuantileTransformer,KitchenSink | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.2 |
173-
| 2 | SimpleImputer,Variance Threshold,NoCoalescer,OneHotEncoder,StandardScaler,SRC | embedding,MLPBackbone,FullyConnectedHead,nn.Sequential | 0.2 |
174-
| 3 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,NoScaler,KitchenSink | embedding,ResNetBackbone,FullyConnectedHead,nn.Sequential | 0.12 |
175-
| 4 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,QuantileTransformer,KitchenSink | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.08 |
176-
| 5 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,QuantileTransformer,KitchenSink | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.08 |
171+
| 0 | SimpleImputer,Variance Threshold,NoCoalescer,OneHotEncoder,StandardScaler,SRC | embedding,MLPBackbone,FullyConnectedHead,nn.Sequential | 0.38 |
172+
| 1 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,NoScaler,KitchenSink | embedding,ResNetBackbone,FullyConnectedHead,nn.Sequential | 0.18 |
173+
| 2 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,QuantileTransformer,KitchenSink | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.16 |
174+
| 3 | SimpleImputer,Variance Threshold,NoCoalescer,OneHotEncoder,StandardScaler,NoFeaturePreprocessing | no embedding,ShapedMLPBackbone,FullyConnectedHead,nn.Sequential | 0.1 |
175+
| 4 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,NoScaler,KitchenSink | embedding,ResNetBackbone,FullyConnectedHead,nn.Sequential | 0.08 |
176+
| 5 | None | SVMLearner | 0.04 |
177+
| 6 | SimpleImputer,Variance Threshold,MinorityCoalescer,OneHotEncoder,NoScaler,KitchenSink | embedding,ResNetBackbone,FullyConnectedHead,nn.Sequential | 0.04 |
178+
| 7 | None | CBLearner | 0.02 |
177179
autoPyTorch results:
178180
Dataset name: Australian
179181
Optimisation Metric: accuracy
180182
Best validation score: 0.8713450292397661
181-
Number of target algorithm runs: 21
183+
Number of target algorithm runs: 22
182184
Number of successful target algorithm runs: 19
183185
Number of crashed target algorithm runs: 0
184-
Number of target algorithms that exceeded the time limit: 2
186+
Number of target algorithms that exceeded the time limit: 3
185187
Number of target algorithms that exceeded the memory limit: 0
186188
187189
@@ -191,7 +193,7 @@ Print the final ensemble performance
191193
192194
.. rst-class:: sphx-glr-timing
193195

194-
**Total running time of the script:** ( 5 minutes 20.003 seconds)
196+
**Total running time of the script:** ( 5 minutes 29.291 seconds)
195197

196198

197199
.. _sphx_glr_download_examples_20_basics_example_tabular_classification.py:

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

Lines changed: 3 additions & 3 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 0x7fdca57c8b50>
128+
<autoPyTorch.api.tabular_regression.TabularRegressionTask object at 0x7f426a157cd0>
129129
130130
131131
@@ -167,7 +167,7 @@ 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: 7a5ffe66-f075-11ec-8806-a30cbc8a0bb8
170+
Dataset name: 3828ee5f-f23e-11ec-87fd-dbbaad031c38
171171
Optimisation Metric: r2
172172
Best validation score: 0.8670098636440993
173173
Number of target algorithm runs: 24
@@ -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 35.570 seconds)
186+
**Total running time of the script:** ( 5 minutes 32.769 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-
**11:01.164** total execution time for **examples_20_basics** files:
8+
**11:07.480** 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:35.570 | 0.0 MB |
11+
| :ref:`sphx_glr_examples_20_basics_example_tabular_regression.py` (``example_tabular_regression.py``) | 05:32.769 | 0.0 MB |
1212
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
13-
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:20.003 | 0.0 MB |
13+
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:29.291 | 0.0 MB |
1414
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
15-
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:05.591 | 0.0 MB |
15+
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:05.420 | 0.0 MB |
1616
+--------------------------------------------------------------------------------------------------------------+-----------+--------+

0 commit comments

Comments
 (0)