-
Notifications
You must be signed in to change notification settings - Fork 22
Reinforcement learning2 gabriel #22
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
Open
gabriel-trigo
wants to merge
16
commits into
google:copybara_push
Choose a base branch
from
gabriel-trigo:reinforcement_learning2-gabriel
base: copybara_push
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Reinforcement learning2 gabriel #22
gabriel-trigo
wants to merge
16
commits into
google:copybara_push
from
gabriel-trigo:reinforcement_learning2-gabriel
Conversation
This file contains hidden or 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
…tory is to have all reinforcement learning related code, and scripts to train and evaluate agents
…or progress of RL experiments
…gin config file, and generates variations changing imporant parameters like time step length, start date and number of days on episode. Also added .bash script to illustrate how to use it
…ntations that were added in previous commits. Changed some default argument values, same for populate_starter_buffer.py script
…visualization module, which this observer uses to plot the graphs
…r of steps instead of episode steps to calculate percentage, leading to > 100% values
… Added saved_model_policy.py file to policies directory -- this file has a class which is used to load and interact with policies saved during training
…eter was redundant with the base_building's time_step_sec
…fore, it was wrongly using the first checkpoint, which gave the untrained agent performance)
s2t2
reviewed
Apr 8, 2025
s2t2
reviewed
Apr 8, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #20 (along with other changes)
This PR should be merged AFTER #18 and #19, as it builds on top of them. Consequently, it has the commits from those PRs, as well as new commits on top
The new commits add:
eval.py
script to evaluate policiesgenerate_gin_config_files.py
script to generate variations of gin environment config filesvisualization
module with features to save plots of evaluation runs to eval resultstd3
andddpg
agents