Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advantage Actor Critic (A2C) Model #598

Merged
merged 46 commits into from
Aug 13, 2021
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
6f1afc9
a2c draft
blahBlahhhJ Mar 19, 2021
d6e6652
finish logic but not training
blahBlahhhJ Mar 19, 2021
b9ee7e9
cli pass converge on cartpole environment
blahBlahhhJ Mar 19, 2021
9a3a309
test by calling from package, fix code formatting, ready for review
blahBlahhhJ Mar 20, 2021
ed891bc
add tests, fix formatting
blahBlahhhJ Mar 20, 2021
415437b
fix typo
blahBlahhhJ Mar 20, 2021
47932be
fix tests, ready for review
blahBlahhhJ Mar 20, 2021
f2b19c8
Add A2C to __init__
akihironitta Mar 20, 2021
22f3b85
Update docs
akihironitta Mar 20, 2021
8221035
Fix formatting
akihironitta Mar 20, 2021
16bcd4a
Use self.hparams and remove n_steps
akihironitta Mar 20, 2021
e2ffd14
Update CHANGELOG
akihironitta Mar 20, 2021
a06528e
Merge branch 'master' into feature/596_a2c
blahBlahhhJ Mar 20, 2021
e397c47
fix typing hints, add documentation for A2C
blahBlahhhJ Mar 21, 2021
245feb0
minor formatting issue
blahBlahhhJ Mar 21, 2021
9211f20
delete print and add normalization
blahBlahhhJ Mar 21, 2021
17fc418
Adjust fig size
akihironitta Mar 21, 2021
b26b271
Fix typing
akihironitta Mar 21, 2021
f7d0a74
switch to function based pytest
blahBlahhhJ Apr 19, 2021
a1f2949
Merge branch 'feature/596_a2c' of https://github.com/blahBlahhhJ/ligh…
blahBlahhhJ Apr 19, 2021
85c407e
fix formatting
blahBlahhhJ Apr 19, 2021
0d10f0a
fix import
blahBlahhhJ Apr 19, 2021
cc9909b
fix format again
blahBlahhhJ Apr 19, 2021
46785bd
fix format again again
blahBlahhhJ Apr 19, 2021
bf14f13
ad another function test
blahBlahhhJ May 8, 2021
53a5703
Merge branch 'master' into feature/596_a2c
Borda Jun 24, 2021
83f5cef
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 24, 2021
fa64829
formt
Borda Jun 24, 2021
8e1c783
Merge branch 'feature/596_a2c' of https://github.com/blahBlahhhJ/ligh…
Borda Jun 24, 2021
023912b
Apply suggestions from code review
Borda Jun 24, 2021
6167d04
Merge branch 'master' into feature/596_a2c
mergify[bot] Jun 25, 2021
53ff8cc
Merge branch 'master' into feature/596_a2c
mergify[bot] Jun 25, 2021
1159c63
Merge branch 'master' into feature/596_a2c
mergify[bot] Jun 29, 2021
1faa5f5
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 1, 2021
73b240f
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 4, 2021
cdada9d
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 4, 2021
89a3b1a
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 7, 2021
c90beb9
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 13, 2021
baa512a
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 13, 2021
eb30b22
fix test
blahBlahhhJ Jul 20, 2021
b37888d
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 26, 2021
a509d04
Merge branch 'master' into feature/596_a2c
mergify[bot] Jul 28, 2021
74bfa34
Merge branch 'master' into feature/596_a2c
mergify[bot] Aug 9, 2021
57542aa
Merge branch 'master' into feature/596_a2c
mergify[bot] Aug 13, 2021
d717a71
Merge branch 'master' into feature/596_a2c
mergify[bot] Aug 13, 2021
4687f9a
Update CHANGELOG.md
Borda Aug 13, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update CHANGELOG.md
Borda authored Aug 13, 2021
commit 4687f9a037d6f75c664ce26618b52d07b0d7c322
7 changes: 1 addition & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,18 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - 2021-MM-DD
## [unReleased] - 2021-MM-DD

### Added

- Added Advantage Actor-Critic (A2C) Model [#598](https://github.com/PyTorchLightning/lightning-bolts/pull/598))


## [unReleased] - 2021-MM-DD

### Added


### Changed

- Changed the default values `pin_memory=False`, `shuffle=False` and `num_workers=16` to `pin_memory=True`, `shuffle=True` and `num_workers=0` of datamodules ([#701](https://github.com/PyTorchLightning/lightning-bolts/pull/701))