-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Lower level access to hl world #1187
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
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #1187 +/- ##
==========================================
- Coverage 85.66% 85.51% -0.15%
==========================================
Files 104 104
Lines 8834 8874 +40
==========================================
+ Hits 7568 7589 +21
- Misses 1266 1285 +19
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
98cbce8
to
6b4df50
Compare
Moved handling of `start_timesteps` from AgentFactory to Experiment.run. Slight internal simplifications, extended documentation
Also minor aesthetic changes
3bc607e
to
4acdac7
Compare
Was reviewed in pair programming and in conversation above, merging |
Gives the user the possibility to extract the
World
from a configuredExperiment
. This required moving the initial rollout (according tostart_timesteps
) from theAgentFactory
toExperiment.run
. But since it was only ever used there, this change is essentially backwards compatibleI also enhanced documentation.
__init__
docstrings were previously not rendered and there were some formatting errors in them, hence the changes there.