We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In any version, getting the length of an Episode loaded from disk crashes:
from grid2op.Episode import EpisodeData logs_path = "./my_runner_output_dir" episode_id = "0001" episode_data = EpisodeData.from_disk(agent_path=logs_path, name=episode_id) n_steps = len(episode_data)
Overloading __len__ should return an integer type. Instead we have the following:
__len__
TypeError: 'str' object cannot be interpreted as an integer
The text was updated successfully, but these errors were encountered:
fix issue #65
d045efe
now real bugfix for issue #65
18aede0
Fixed in version v0.8.1
Sorry, something went wrong.
Merge pull request #65 from BDonnot/zrg-pp-apply-speed
2f22840
PandaPower backend apply speed
No branches or pull requests
In any version, getting the length of an Episode loaded from disk crashes:
Overloading
__len__
should return an integer type. Instead we have the following:The text was updated successfully, but these errors were encountered: