Skip to content

Commit

Permalink
Updated: mermaid class diagram, it needs more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Caparrini committed Mar 31, 2024
1 parent e4918e4 commit 0084495
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/sections/Concepts/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,29 @@ framework. They are used to define the search space and the score function.
classDiagram
class Optimizer{
+estimator_class estimator_class
+HyperparameterSpace hyperspace
+Tracker tracker
+Evaluator evaluator
+IndividualUtils individual_utils
optimize_clf()
}
class HyperparameterSpace{
+dict fixed_hyperparams
+dict evolvable_hyperparams
from_json()
to_json()
}
class Evaluator{
evaluate()
evaluate_individual()
}
class IndividualUtils{
individual2dict()
get_clf()
}
Optimizer "1" --o "1" HyperparameterSpace
Optimizer "1" --o "1" Evaluator
Optimizer "1" --o "1" IndividualUtils


.. toctree::
Expand Down

0 comments on commit 0084495

Please sign in to comment.