Skip to content

Commit

Permalink
Add stable-baselines SAC version
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin committed Dec 28, 2018
1 parent 47c6c1c commit 7fbe91a
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 505 deletions.
2 changes: 1 addition & 1 deletion docker/env_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ dependencies:
- seaborn==0.8.1
- scikit-learn==0.19.1
- scipy==1.0.0
- stable-baselines==2.3.0
- -e git+https://github.com/hill-a/stable-baselines.git@f2890e0b02929de05e33d185f71602bf9ec4fcf9#egg=stable_baselines
- termcolor==1.1.0
- torchfile==0.1.0
- tornado==4.5.3
Expand Down
4 changes: 3 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ Changelog

For download links, please look at `Github release page <https://github.com/araffin/robotics-rl-srl/releases>`_.

Pre-Release 1.0.1 (WIP)
Pre-Release 1.1.0 (WIP)
-----------------------

- fixed a bug in the dataset generator where the GUI was instantiated two times
- updated stable-baselines version + srl-zoo submodule
- add stable-baselines SAC version
- remove pytorch SAC version **breaking changes**

Release 1.0 (2018-10-09)
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ dependencies:
- seaborn==0.8.1
- scikit-learn==0.19.1
- scipy==1.0.0
- stable-baselines==2.3.0
- -e git+https://github.com/hill-a/stable-baselines.git@f2890e0b02929de05e33d185f71602bf9ec4fcf9#egg=stable_baselines
- termcolor==1.1.0
- torchfile==0.1.0
- tornado==4.5.3
Expand Down
116 changes: 0 additions & 116 deletions rl_baselines/models/sac_models.py

This file was deleted.

2 changes: 1 addition & 1 deletion rl_baselines/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"ppo1": (PPO1Model, AlgoType.REINFORCEMENT_LEARNING, [ActionType.DISCRETE, ActionType.CONTINUOUS]),
"ppo2": (PPO2Model, AlgoType.REINFORCEMENT_LEARNING, [ActionType.DISCRETE, ActionType.CONTINUOUS]),
"random_agent": (RandomAgentModel, AlgoType.OTHER, [ActionType.DISCRETE, ActionType.CONTINUOUS]),
"sac": (SACModel, AlgoType.REINFORCEMENT_LEARNING, [ActionType.DISCRETE, ActionType.CONTINUOUS]),
"sac": (SACModel, AlgoType.REINFORCEMENT_LEARNING, [ActionType.CONTINUOUS]),
"trpo": (TRPOModel, AlgoType.REINFORCEMENT_LEARNING, [ActionType.DISCRETE, ActionType.CONTINUOUS])
}

Expand Down
Loading

0 comments on commit 7fbe91a

Please sign in to comment.