Skip to content

Commit fc0c9fe

Browse files
author
Github Actions
committed
Ravin Kohli: [FIX] Datamanager in memory (#382)
1 parent 1c83c85 commit fc0c9fe

31 files changed

+185
-181
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-5.69 KB
Loading
-5.74 KB
Loading
-464 Bytes
Loading
-805 Bytes
Loading

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

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,16 @@ Image Classification
8686
________________________________________
8787
Configuration(values={
8888
'image_augmenter:GaussianBlur:use_augmenter': False,
89-
'image_augmenter:GaussianNoise:sigma_offset': 1.746304541085565,
89+
'image_augmenter:GaussianNoise:sigma_offset': 2.925784534700399,
9090
'image_augmenter:GaussianNoise:use_augmenter': True,
91-
'image_augmenter:RandomAffine:rotate': 60,
92-
'image_augmenter:RandomAffine:scale_offset': 0.22600480469728468,
93-
'image_augmenter:RandomAffine:shear': 4,
94-
'image_augmenter:RandomAffine:translate_percent_offset': 0.14146389752228222,
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,
9595
'image_augmenter:RandomAffine:use_augmenter': True,
96-
'image_augmenter:RandomCutout:p': 0.2650210115648416,
97-
'image_augmenter:RandomCutout:use_augmenter': True,
98-
'image_augmenter:Resize:use_augmenter': True,
99-
'image_augmenter:ZeroPadAndCrop:percent': 0.27645895609259974,
96+
'image_augmenter:RandomCutout:use_augmenter': False,
97+
'image_augmenter:Resize:use_augmenter': False,
98+
'image_augmenter:ZeroPadAndCrop:percent': 0.019686612530780023,
10099
'normalizer:__choice__': 'NoNormalizer',
101100
})
102101

@@ -177,7 +176,7 @@ Image Classification
177176
178177
.. rst-class:: sphx-glr-timing
179178

180-
**Total running time of the script:** ( 0 minutes 6.603 seconds)
179+
**Total running time of the script:** ( 0 minutes 6.576 seconds)
181180

182181

183182
.. _sphx_glr_download_examples_20_basics_example_image_classification.py:

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

Lines changed: 4 additions & 4 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 0x7f1b03847400>
137+
<autoPyTorch.api.tabular_classification.TabularClassificationTask object at 0x7fc57dba9700>
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: 23
183+
Number of target algorithm runs: 24
184184
Number of successful target algorithm runs: 21
185185
Number of crashed target algorithm runs: 2
186-
Number of target algorithms that exceeded the time limit: 0
186+
Number of target algorithms that exceeded the time limit: 1
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 21.126 seconds)
196+
**Total running time of the script:** ( 5 minutes 16.919 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: 6 additions & 6 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 0x7f1b9f590700>
128+
<autoPyTorch.api.tabular_regression.TabularRegressionTask object at 0x7fc61981a700>
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: 351b9212-90d3-11ec-87dd-87e39c51dfff
170+
Dataset name: e30391f0-94ca-11ec-8816-6597b230fd31
171171
Optimisation Metric: r2
172172
Best validation score: 0.8670098636440993
173-
Number of target algorithm runs: 27
174-
Number of successful target algorithm runs: 25
173+
Number of target algorithm runs: 28
174+
Number of successful target algorithm runs: 27
175175
Number of crashed target algorithm runs: 1
176-
Number of target algorithms that exceeded the time limit: 1
176+
Number of target algorithms that exceeded the time limit: 0
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 33.360 seconds)
186+
**Total running time of the script:** ( 5 minutes 27.461 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.090** total execution time for **examples_20_basics** files:
8+
**10:50.955** 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:33.360 | 0.0 MB |
11+
| :ref:`sphx_glr_examples_20_basics_example_tabular_regression.py` (``example_tabular_regression.py``) | 05:27.461 | 0.0 MB |
1212
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
13-
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:21.126 | 0.0 MB |
13+
| :ref:`sphx_glr_examples_20_basics_example_tabular_classification.py` (``example_tabular_classification.py``) | 05:16.919 | 0.0 MB |
1414
+--------------------------------------------------------------------------------------------------------------+-----------+--------+
15-
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:06.603 | 0.0 MB |
15+
| :ref:`sphx_glr_examples_20_basics_example_image_classification.py` (``example_image_classification.py``) | 00:06.576 | 0.0 MB |
1616
+--------------------------------------------------------------------------------------------------------------+-----------+--------+

0 commit comments

Comments
 (0)