-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: .travis.yml README.md
- Loading branch information
Showing
52 changed files
with
719 additions
and
950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>SMAC3</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.python.pydev.PyDevBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.python.pydev.pythonNature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?eclipse-pydev version="1.0"?><pydev_project> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property> | ||
</pydev_project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 0.1.0 | ||
|
||
* Moved to github instead of bitbucket | ||
* ADD further unit tests | ||
* CHANGE Stats object instead of static class | ||
* CHANGE requirement of ConfigSpace package to 0.2.0 | ||
* FIX intensify runs at least two challengers | ||
* FIX intensify skips incumbent as challenger | ||
* FIX Function TAE runner passes random seed to target function | ||
* FIX parsing of emtpy lines in scenario file | ||
|
||
# 0.0.1 | ||
|
||
* initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ scipy>=0.13.1 | |
six | ||
Cython | ||
pynisher>=0.4.1 | ||
ConfigSpace | ||
ConfigSpace>=0.2.0 | ||
pyrfr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,12 @@ | |
|
||
setuptools.setup( | ||
name="smac", | ||
version="0.0.1", | ||
version="0.1.0", | ||
author="Marius Lindauer, Matthias Feurer, Katharina Eggensperger, Aaron Klein, Stefan Falkner and Frank Hutter", | ||
author_email="[email protected]", | ||
description=("SMAC3, a python implementation of 'Sequential Model-based " | ||
description=("SMAC3, a Python implementation of 'Sequential Model-based " | ||
"Algorithm Configuration'."), | ||
license="GPLv3", | ||
license="3-clause BSD", | ||
keywords="machine learning algorithm configuration hyperparameter " | ||
"optimization tuning", | ||
url="", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
__author__ = "Katharina Eggensperger" | ||
__copyright__ = "Copyright 2015, ML4AAD" | ||
__license__ = "AGPLv3" | ||
__license__ = "3-clause BSD" | ||
__maintainer__ = "Katharina Eggensperger" | ||
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
__author__ = "Katharina Eggensperger" | ||
__copyright__ = "Copyright 2015, ML4AAD" | ||
__license__ = "AGPLv3" | ||
__license__ = "3-clause BSD" | ||
__maintainer__ = "Katharina Eggensperger" | ||
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
__author__ = "Aaron Klein" | ||
__copyright__ = "Copyright 2015, ML4AAD" | ||
__license__ = "AGPLv3" | ||
__license__ = "3-clause BSD" | ||
__maintainer__ = "Aaron Klein" | ||
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
__author__ = "Katharina Eggensperger" | ||
__copyright__ = "Copyright 2015, ML4AAD" | ||
__license__ = "AGPLv3" | ||
__license__ = "3-clause BSD" | ||
__maintainer__ = "Katharina Eggensperger" | ||
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
|
Empty file.
Oops, something went wrong.