Skip to content

Commit

Permalink
Update logging variable and dependencies
Browse files Browse the repository at this point in the history
Renamed 'v' to 'state_value' in 'montecarlo_evaluation.py' for clarity. Updated mypy to version 1.7.1, and modified command for mypy in pyproject.toml to include '--no-incremental' for full analysis each time. Several changes in poetry.lock were made including updated 'fonttools' from version 4.44.3 to 4.45.1. These changes bring improvements and potential bug-fixes to the dependencies.
  • Loading branch information
nakashima-hikaru committed Nov 25, 2023
1 parent f176aed commit 8649d71
Show file tree
Hide file tree
Showing 3 changed files with 350 additions and 350 deletions.
2 changes: 1 addition & 1 deletion examples/montecarlo_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def main() -> None:
state = result.next_state
agent.update()

logging.info(agent.v)
logging.info(agent.state_value)


if __name__ == "__main__":
Expand Down
Loading

1 comment on commit 8649d71

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
reinforcement_learning/markov_decision_process/grid_world/methods/monte_carlo
   mc_control_off_policy.py34197%56
reinforcement_learning/markov_decision_process/grid_world/methods/temporal_difference
   sarsa_off_policy.py44198%59
TOTAL809299% 

Tests Skipped Failures Errors Time
37 0 💤 0 ❌ 0 🔥 0.775s ⏱️

Please sign in to comment.