Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
kobanium committed Jan 1, 2024
1 parent c0b53c9 commit 3606c22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mcts/pucb/pucb.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def calculate_pucb_value(node_visits: int, children_visits: np.ndarray, \
Args:
node_visits (int): ノードの探索回数。
children_visits (np.ndarray): 子ノードの探索回数。
value (np.ndarray): 子ノードのValueの合計値。
value_sum (np.ndarray): 子ノードのValueの合計値。
policy (np.ndarray): 子ノードのPolicy。
Returns:
Expand Down
3 changes: 2 additions & 1 deletion program.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@
# 強化学習の棋譜生成時に経過情報の表示を追加。
# Version 0.9.0 : undo, fixed_handicapコマンド、コマンドID付きGTPコマンドのサポート。
# 不正なGTPコマンドの応答誤りを修正。
VERSION="0.9.0"
# Version 0.9.1 : PVに空文字が混入する不具合の修正。
VERSION="0.9.1"

0 comments on commit 3606c22

Please sign in to comment.