Skip to content

Commit

Permalink
Fix: examples
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEimer committed Jun 5, 2024
1 parent 11be1f6 commit 29ba718
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arlbench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__author__ = """AutoML Hannover"""
__email__ = """[email protected]"""
__version__ = """0.1.0"""
__version__ = """0.1.1"""
__copyright__ = f"Copyright {datetime.date.today().strftime('%Y')}, AutoML Hannover"

__all__ = ["AutoRLEnv", "run_arlbench"]
1 change: 1 addition & 0 deletions examples/configs/algorithm/dqn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ hp_config:
buffer_size: 1000000
initial_epsilon: 1.0
target_epsilon: 0.05
exploration_fraction: 0.1
gamma: 0.99
gradient_steps: 1
learning_rate: 0.0003
Expand Down
1 change: 1 addition & 0 deletions examples/configs/epsilon_heuristic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ hp_config:
buffer_size: 1000000
initial_epsilon: 0.9
target_epsilon: 0.9
exploration_fraction: 0.1
gamma: 0.99
gradient_steps: 1
learning_rate: 0.0003
Expand Down
1 change: 1 addition & 0 deletions examples/configs/gradient_lr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ hp_config:
buffer_size: 1000000
initial_epsilon: 0.8
target_epsilon: 0.8
exploration_fraction: 0.1
gamma: 0.99
gradient_steps: 1
learning_rate: 0.0003
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ARLBench"
version = "0.1.0"
version = "0.1.3"
dependencies = [
"typing_extensions", # Better typing
"tomli==2.0.1",
Expand All @@ -19,6 +19,7 @@ dependencies = [
"brax==0.10.3",
"pytest==7.4.4",
"coverage==7.4.4",
"chex==0.1.86",
"ruff",
"hydra-core",
"hydra-submitit-launcher",
Expand Down Expand Up @@ -54,7 +55,7 @@ tooling = ["commitizen", "pre-commit", "ruff"]
test = ["pytest", "pytest-coverage", "pytest-cases", "ARLBench[examples]"]
examples = ["hypersweeper"]
doc = [
"automl_sphinx_theme",
"automl_sphinx_theme", "gymnasium==0.29.1"
]
envpool = ["envpool==0.8.4"]

Expand Down

0 comments on commit 29ba718

Please sign in to comment.