-
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.
- Loading branch information
Showing
13 changed files
with
124 additions
and
34 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,3 @@ | ||
img { | ||
background-color: transparent !important; | ||
} |
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,13 @@ | ||
document.addEventListener("DOMContentLoaded", function() { | ||
// Select the toc-item and its ul (if exists) | ||
const tocItem = document.querySelector('.bd-toc-item ul'); | ||
|
||
// Check if the ul doesn't exist | ||
if (!tocItem) { | ||
// Hide the entire sidebar if the toc ul is not found | ||
const sidebar = document.querySelector('.bd-sidebar'); | ||
if (sidebar) { | ||
sidebar.style.display = 'none'; | ||
} | ||
} | ||
}); |
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,19 @@ | ||
hyperspace | ||
========== | ||
|
||
The `hyperspace` module provides classes and functions for defining search spaces for hyperparameters. | ||
An user should use the :class:`~mloptimizer.interfaces.HyperparameterSpaceBuilder` class to | ||
define the search space for hyperparameters. | ||
|
||
.. autosummary:: | ||
|
||
~mloptimizer.domain.hyperspace.Hyperparam | ||
~mloptimizer.domain.hyperspace.HyperparameterSpace | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:caption: Contents: | ||
|
||
hyperspace/hyperparam | ||
hyperspace/hyperparameter_space |
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 @@ | ||
Hyperparam | ||
---------- | ||
|
||
This class provides a way to define hyperparameters for a machine learning model. | ||
|
||
|
||
|
||
.. autoclass:: mloptimizer.domain.hyperspace.Hyperparam | ||
: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,13 @@ | ||
HyperparameterSpace | ||
------------------- | ||
|
||
This class provides a way to define search spaces for hyperparameters. | ||
|
||
|
||
.. autoclass:: mloptimizer.domain.hyperspace.HyperparameterSpace | ||
: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
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 @@ | ||
domain | ||
====== | ||
|
||
The `domain` contains the core classes and functions for building and optimizing machine learning models. | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:caption: Contents: | ||
|
||
domain/hyperspace |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.. _user_guide: | ||
|
||
========== | ||
User Guide | ||
========== | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
:numbered: | ||
|
||
introduction | ||
Basics/index | ||
Concepts/index |
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 |
---|---|---|
|
@@ -24,4 +24,5 @@ sphinxcontrib-mermaid | |
tensorflow>=2.12.0 | ||
tqdm | ||
xgboost>=1.7.3 | ||
hyperopt | ||
hyperopt | ||
ucimlrepo |