-
Notifications
You must be signed in to change notification settings - Fork 373
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
feature(pu): add board_games env #356
Conversation
Codecov Report
@@ Coverage Diff @@
## main #356 +/- ##
==========================================
- Coverage 86.74% 85.72% -1.03%
==========================================
Files 513 525 +12
Lines 39463 41079 +1616
==========================================
+ Hits 34234 35213 +979
- Misses 5229 5866 +637
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
def render(self, mode='human'): | ||
self._env.render() | ||
|
||
def human_to_action(self): |
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.
this method is unnecessary
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.
may be used in test_atari_muzero_env.py, to be consistent with other board_games env
dizoo/board_games/go/envs/coords.py
Outdated
@@ -0,0 +1,95 @@ | |||
# Copyright 2018 Google LLC |
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.
can we overwrite these codes for reducing usage of other codes?
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.
we can do it later after the main part is done
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.
asap, to avoid some license problems
dizoo/board_games/go/envs/coords.py
Outdated
@@ -0,0 +1,95 @@ | |||
# Copyright 2018 Google LLC |
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.
asap, to avoid some license problems
add board_games env including tictactoe, gomoku, chess, go, atari derived from class BaseGameEnv.
Description
Related Issue
TODO
Check List