Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoPyTorch/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.1.1"
__version__ = "0.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# noinspection PyInterpreter
setuptools.setup(
name="autoPyTorch",
version="0.1.1",
version="0.2",
author="AutoML Freiburg",
author_email="[email protected]",
description=("Auto-PyTorch searches neural architectures using smac"),
Expand Down
3 changes: 3 additions & 0 deletions test/test_pipeline/test_tabular_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
UniformIntegerHyperparameter,
)

from flaky import flaky

import numpy as np

import pytest
Expand Down Expand Up @@ -59,6 +61,7 @@ def _assert_pipeline_search_space(self, pipeline, search_space_updates):
elif isinstance(hyperparameter, CategoricalHyperparameter):
assert update.value_range == hyperparameter.choices

@flaky(max_runs=3)
def test_pipeline_fit(self, fit_dictionary_tabular, exclude):
"""This test makes sure that the pipeline is able to fit
given random combinations of hyperparameters across the pipeline"""
Expand Down