-
Notifications
You must be signed in to change notification settings - Fork 58
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
[WIP] TOML saving and loading hyperparams #286
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a3fe05b
Add saving of hyperparams
Het-Shah 70b953c
save/load hyperparams and weights
Het-Shah 759a4b4
Merge master and add all agents
Het-Shah f1aae3f
Add tutorial and test
Het-Shah f74a0e1
Add Linting
Het-Shah ec6435a
Update isort
Het-Shah d177dfa
isort
Het-Shah 7436fe8
Minor update in ppo1
Het-Shah 1d6ba79
Merge branch 'master' of https://github.com/SforAiDl/genrl into TOML
Het-Shah 1d5dfad
Merge branch 'master' of https://github.com/SforAiDl/genrl into TOML
Het-Shah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Saving and Loading Weights and Hyperparameters with GenRL | ||
========================================================= | ||
|
||
We often want to checkpoint our training model in the RL setting, GenRL offers to save your hyperparameters and weights using TOML and pytorch state_dict respectively. | ||
|
||
Following is a sample code to save checkpoints - | ||
|
||
.. code-block:: python | ||
import gym | ||
import shutil | ||
|
||
from genrl.agents import VPG | ||
from genrl.environments.suite import VectorEnv | ||
from genrl.core import NormalActionNoise | ||
from genrl.trainers import OnPolicyTrainer | ||
|
||
env = VectorEnv("CartPole-v0", 2) | ||
algo = VPG("mlp", env, batch_size=5, replay_size=100) | ||
|
||
trainer = OnPolicyTrainer( | ||
algo, | ||
env, | ||
log_mode=["stdout"], | ||
logdir="./logs", | ||
save_interval=100, | ||
epochs=100, | ||
evaluate_episodes=2, | ||
) | ||
trainer.train() | ||
trainer.evaluate() | ||
shutil.rmtree("./logs") | ||
|
||
Let's say you have a saved weights and hyperparameters file to load onto the model you can change your trainer as below to load it - | ||
|
||
.. code-block:: python | ||
trainer = OnPolicyTrainer( | ||
algo, | ||
env, | ||
log_mode=["stdout"], | ||
logdir="./logs", | ||
save_interval=100, | ||
epochs=100, | ||
evaluate_episodes=2, | ||
load_weights="./checkpoints/VPG_CartPole-v0/1-log-0.pt", | ||
load_hyperparams="./checkpoints/VPG_CartPole-v0/1-log-0.toml", | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ Tutorials | |
Using Custom Policies | ||
Using A2C | ||
using_vpg | ||
Saving and loading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to add the
_
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it has the same name as the parameter and we are not going to let user get to this :P