-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #794 from Epistimio/release-v0.2.2rc1
Release v0.2.2rc1
- Loading branch information
Showing
142 changed files
with
8,924 additions
and
2,748 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
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
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 |
---|---|---|
|
@@ -17,6 +17,8 @@ requirements: | |
- pytest-runner | ||
- appdirs | ||
run: | ||
- cloudpickle | ||
- dataclasses | ||
- python | ||
- numpy | ||
- scipy | ||
|
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 |
---|---|---|
@@ -1,8 +1,5 @@ | ||
Asynchronous Successive Halving Algorithm | ||
========================================= | ||
|
||
Can't build documentation because of import order. | ||
Sphinx is loading ``orion.algo.asha`` before ``orion.algo`` and therefore | ||
there is a cycle between the definition of ``BaseAlgorithm`` and | ||
``ASHA`` as the meta-class ``Factory`` is trying to import ``ASHA``. | ||
`PR #135 <https://github.com/Epistimio/orion/pull/135/files>`_ should get rid of this problem. | ||
.. automodule:: orion.algo.asha | ||
:members: |
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,5 +3,3 @@ Base definition of algorithms | |
|
||
.. autoclass:: orion.algo.base.BaseAlgorithm | ||
:members: | ||
|
||
|
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 @@ | ||
Parallel Strategy | ||
================= | ||
|
||
.. automodule:: orion.algo.parallel_strategy | ||
:members: |
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,89 @@ | ||
Population Based Training | ||
========================= | ||
|
||
.. contents:: | ||
:depth: 3 | ||
:local: | ||
|
||
.. role:: hidden | ||
:class: hidden-section | ||
|
||
Population Based Training | ||
------------------------- | ||
|
||
.. autoclass:: orion.algo.pbt.pbt.PBT | ||
:members: | ||
|
||
LineageNode | ||
----------- | ||
|
||
.. autoclass:: orion.algo.pbt.pbt.LineageNode | ||
:members: | ||
|
||
Lineages | ||
-------- | ||
|
||
.. autoclass:: orion.algo.pbt.pbt.Lineages | ||
:members: | ||
|
||
Exploit classes for Population Based Training | ||
--------------------------------------------- | ||
|
||
BaseExploit | ||
~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.exploit.BaseExploit | ||
:members: | ||
|
||
|
||
PipelineExploit | ||
~~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.exploit.PipelineExploit | ||
:members: | ||
|
||
|
||
TruncateExploit | ||
~~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.exploit.TruncateExploit | ||
:members: | ||
|
||
BacktrackExploit | ||
~~~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.exploit.BacktrackExploit | ||
:members: | ||
|
||
Explore classes for Population Based Training | ||
--------------------------------------------- | ||
|
||
BaseExplore | ||
~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.explore.BaseExplore | ||
:members: | ||
|
||
|
||
PipelineExplore | ||
~~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.explore.PipelineExplore | ||
:members: | ||
|
||
|
||
PerturbExplore | ||
~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.explore.PerturbExplore | ||
:members: | ||
|
||
ResampleExplore | ||
~~~~~~~~~~~~~~~ | ||
|
||
.. autoclass:: orion.algo.pbt.explore.ResampleExplore | ||
:members: | ||
|
||
|
||
|
||
|
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,5 @@ | ||
db release command | ||
================== | ||
|
||
.. automodule:: orion.core.cli.db.release | ||
:members: |
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 @@ | ||
db rm command | ||
============= | ||
|
||
.. automodule:: orion.core.cli.db.rm | ||
:members: |
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 @@ | ||
db set command | ||
============== | ||
|
||
.. automodule:: orion.core.cli.db.set | ||
:members: |
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 @@ | ||
db upgrade command | ||
================== | ||
|
||
.. automodule:: orion.core.cli.db.upgrade | ||
:members: |
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ Experiment Version Control | |
:maxdepth: 1 | ||
:caption: Modules | ||
|
||
evc/tree | ||
evc/experiment | ||
evc/adapters | ||
evc/conflicts |
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
2 changes: 1 addition & 1 deletion
2
docs/src/code/core/evc/tree.rst → docs/src/code/core/utils/tree.rst
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Generic Tree | ||
============ | ||
|
||
.. automodule:: orion.core.evc.tree | ||
.. automodule:: orion.core.utils.tree | ||
:members: |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.