Skip to content

Commit

Permalink
Allow use of neps.Float instead of neps.FloatParameter
Browse files Browse the repository at this point in the history
  • Loading branch information
DaStoll committed Jul 3, 2024
1 parent 33f40c6 commit bef6836
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions neps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,29 @@
)
from neps.status.status import get_summary_dict, status

Integer = IntegerParameter
Float = FloatParameter
Categorical = CategoricalParameter
Constant = ConstantParameter
Architecture = ArchitectureParameter

__all__ = [
"run",
"plot",
"Architecture",
"Integer",
"Float",
"Categorical",
"Constant",
"ArchitectureParameter",
"CategoricalParameter",
"ConstantParameter",
"FloatParameter",
"IntegerParameter",
"FunctionParameter",
"run",
"plot",
"get_summary_dict",
"status",
"GraphGrammar",
"GraphGrammarCell",
"GraphGrammarRepetitive",
"IntegerParameter",
"get_summary_dict",
"status",
]

0 comments on commit bef6836

Please sign in to comment.