Antonin RAFFIN
0e44cdce44
Fixed `reset_num_timesteps` behavior
2020-04-17 12:36:27 +02:00
Antonin RAFFIN
c264403816
Rename for consistency
...
+ add _predict to actors
+ improve sac actor code
2020-03-31 17:48:23 +02:00
Antonin RAFFIN
fdecd512db
Add save/load weights for policies and refactor action distributions
2020-03-31 16:29:13 +02:00
Antonin RAFFIN
52d2cd6a1b
Remove gym warnings
2020-03-25 15:54:58 +01:00
Antonin RAFFIN
72a88a8d92
Fix type hint for activation fn
2020-03-24 10:10:37 +01:00
Antonin RAFFIN
ba18258af6
Add proper preprocessing
2020-03-23 17:15:30 +01:00
Antonin RAFFIN
b96a081e5f
Add check for image space
2020-03-20 11:20:57 +01:00
Antonin RAFFIN
57b37513b6
Refactor handling of obs and action space
...
+ remove duplicated code
2020-03-20 10:09:09 +01:00
Antonin RAFFIN
b37c23c149
Bump version and fix
2020-03-16 14:05:21 +01:00
Antonin RAFFIN
c3187604bc
Code cleanup: rename lr to lr_schedule + typing
2020-03-16 14:01:32 +01:00
Antonin Raffin
29d7018265
Add better logging for SAC and PPO
2020-03-13 11:43:12 +01:00
Antonin Raffin
70e601c03c
Improve code and bump version
2020-03-12 15:34:35 +01:00
Antonin Raffin
b64873ffff
Sync callbacks
2020-03-12 12:34:25 +01:00
Antonin Raffin
18f38f8cf5
Reformat
2020-03-12 11:12:10 +01:00
Antonin Raffin
c5e5812894
Finish typing A2C and PPO
2020-03-11 13:01:42 +01:00
Antonin Raffin
7e3736ed56
Type A2C and PPO init
2020-03-10 18:17:47 +01:00
Antonin Raffin
35d0d2b320
More typing
2020-03-10 18:09:45 +01:00
Antonin Raffin
6ebad92e1b
Remove default seed and bump dependencies
2020-03-10 17:43:54 +01:00
Antonin Raffin
fb4e66213d
Use NamedTuple for buffers
2020-03-10 16:43:10 +01:00
Antonin Raffin
67894dab9f
Add clip_mean parameter
2020-03-09 19:02:40 +01:00
Antonin Raffin
a2b1bf06d3
Add squash_output attribute to policy
2020-02-14 11:12:07 +01:00
Antonin Raffin
aa8b4eb22a
Reformat and type the distributions
2020-02-13 13:46:22 +01:00
Antonin Raffin
f1a4fa2d3f
Improve predict method
2020-02-12 15:25:05 +01:00
Antonin Raffin
2ce31c1e21
Fix entropy loss for squashed Gaussian and VecEnv seeding
2020-02-11 17:22:03 +01:00
Antonin Raffin
f7af08bea4
Refactor buffers to use numpy
2020-02-03 15:40:34 +01:00
Antonin Raffin
5d4e73544c
Fix reset_num_timesteps
2020-01-31 13:16:28 +01:00
Antonin Raffin
6d59bfd4a0
Merge branch 'master' into feat/callbacks
2020-01-31 13:09:55 +01:00
Dormann, Noah
1f0dd60b97
Fix saving on GPU - Loading on CPU ( #45 )
...
* removed policy from save, changed th.loads to map to device
* found hack: catch pickle exception and trying th.load with mapping instead, otherwise raise exception with more information -> loading cuda on cpu raises exception -> leads to th.load with map being called
* deleted todo
* updated changelog
* start of saving refactor
* first working c
* all tests pass, save refactored
* - backwards compatibilty not always
- make pytest all passing
- make typing all passing
* Fixes and simplify the save method
* Remove unused param
* Fix backward compat
* Fix docstring
2020-01-31 13:06:55 +01:00
Antonin Raffin
a628354721
Refactor evaluation
2020-01-27 15:53:27 +01:00
Antonin Raffin
b66003cfb3
Add callback support
2020-01-27 14:32:31 +01:00
Antonin Raffin
44fce7c02a
Fix typing errors and typos
2020-01-22 17:17:12 +01:00
Antonin Raffin
c542009641
Clean up code + bug fixes
2020-01-20 11:17:55 +01:00
Antonin Raffin
03e853997a
Add squash_output and expln as policy param for ppo and a2c
2020-01-15 13:21:20 +01:00
Antonin Raffin
8831eff163
Unify evaluation
2020-01-07 14:00:03 +01:00
Antonin Raffin
161c608f9c
Re-sample noise matrix for PPO
2019-12-20 11:28:20 +01:00
Antonin Raffin
1d6f9bf100
Add sample freq for SDE
2019-12-17 11:47:21 +01:00
Antonin Raffin
233f346d53
Update todos
2019-12-06 17:46:56 +01:00
Antonin Raffin
0117cc37f4
Merge branch 'master' into feat/sde-features
2019-12-05 16:33:41 +01:00
Dormann, Noah
03bf513e5e
comment refactoring
...
Co-Authored-By: Raffin, Antonin <Antonin.Raffin@dlr.de>
2019-12-05 08:08:20 +01:00
Antonin Raffin
1ac1a7cad5
Reformat
2019-12-02 14:27:38 +01:00
Antonin Raffin
3cdd5f20af
Bug fix + add test for sde net arch
2019-12-02 14:14:48 +01:00
Antonin Raffin
4e39a0627c
Refactor: enable sde net arch for TD3 and SAC
2019-12-02 14:06:17 +01:00
Antonin Raffin
a2a8bbdf11
Sample n matrices for A2C/PPO when using SDE
2019-12-02 11:48:34 +01:00
Noah Dormann
6928879f5a
Refactored doc-strings
2019-11-28 16:30:13 +01:00
Noah Dormann
e95858784a
Formatted all files
2019-11-28 15:38:04 +01:00
Noah Dormann
9ff59eaf3d
Added attribute self.policy_class to prevent errors when using self.policy as class
2019-11-28 15:25:01 +01:00
Noah Dormann
c75582dfbe
resolving conflicts
...
# Conflicts:
# torchy_baselines/a2c/a2c.py
# torchy_baselines/ppo/ppo.py
Added optimizer params test
2019-11-28 12:12:06 +01:00
Noah Dormann
812cab84ac
Changed PPO deterministic
2019-11-28 11:20:40 +01:00
Antonin Raffin
0885dbe74b
Bug fix in choosing the distribution
2019-11-25 15:02:10 +01:00
Antonin Raffin
5d6649d92b
Enable separate feature extraction for SDE
2019-11-25 14:54:13 +01:00