Skip to content

Commit

Permalink
[Chess] fix dummy observation (#1186)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkorpan committed May 17, 2024
1 parent 903698d commit be09383
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pgx/chess.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class State(core.State):
terminated: Array = FALSE
truncated: Array = FALSE
legal_action_mask: Array = INIT_LEGAL_ACTION_MASK # 64 * 73 = 4672
observation: Array = jnp.zeros((8, 8, 19), dtype=jnp.float32)
observation: Array = jnp.zeros((8, 8, 119), dtype=jnp.float32)
_step_count: Array = jnp.int32(0)
# --- Chess specific ---
_turn: Array = jnp.int32(0)
Expand Down
2 changes: 1 addition & 1 deletion pgx/gardner_chess.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class State(core.State):
terminated: Array = FALSE
truncated: Array = FALSE
legal_action_mask: Array = INIT_LEGAL_ACTION_MASK
observation: Array = jnp.zeros((5, 5, 19), dtype=jnp.float32)
observation: Array = jnp.zeros((5, 5, 115), dtype=jnp.float32)
_step_count: Array = jnp.int32(0)
# --- Chess specific ---
_turn: Array = jnp.int32(0)
Expand Down

0 comments on commit be09383

Please sign in to comment.