-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated: sphinx theme to pydata, autoapi removed, custom API document…
…ation added
- Loading branch information
Showing
10 changed files
with
129 additions
and
23 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,8 @@ | ||
API reference | ||
============= | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
mloptimizer | ||
|
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,20 @@ | ||
GeneticSearch | ||
------------- | ||
|
||
This class provides a genetic algorithm-based optimization framework. | ||
|
||
|
||
.. autosummary:: | ||
|
||
~mloptimizer.interfaces.GeneticSearch.fit | ||
~mloptimizer.interfaces.GeneticSearch.predict | ||
~mloptimizer.interfaces.GeneticSearch.score | ||
|
||
|
||
.. autoclass:: mloptimizer.interfaces.GeneticSearch | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:exclude-members: __init__ | ||
|
||
|
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,9 @@ | ||
HyperparameterSpaceBuilder | ||
-------------------------- | ||
|
||
The `HyperparameterSpaceBuilder` class provides tools to define and construct hyperparameter search spaces for optimization. | ||
|
||
.. autoclass:: mloptimizer.interfaces.HyperparameterSpaceBuilder | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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 @@ | ||
interfaces | ||
========== | ||
|
||
The `interfaces` subpackage provides interfaces for building and optimizing machine learning models. | ||
It includes tools for defining search spaces, managing optimization processes, and more. | ||
|
||
This package contains the following classes: | ||
|
||
- **:class:`~mloptimizer.interfaces.GeneticSearch`**: Provides a genetic algorithm-based optimizer. | ||
- **:class:`~mloptimizer.interfaces.HyperparameterSpaceBuilder`**: Offers tools for defining the hyperparameter search space. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
interfaces/genetic_search | ||
interfaces/hyperspace_builder |
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,11 @@ | ||
mloptimizer | ||
=========== | ||
|
||
The `mloptimizer` package provides interfaces for building and optimizing machine learning models. | ||
It includes tools for defining search spaces, managing optimization processes, and more. | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:caption: Contents: | ||
|
||
mloptimizer.interfaces |
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 |
---|---|---|
|
@@ -23,4 +23,5 @@ sphinx_mdinclude | |
sphinxcontrib-mermaid | ||
tensorflow>=2.12.0 | ||
tqdm | ||
xgboost>=1.7.3 | ||
xgboost>=1.7.3 | ||
hyperopt |
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