diff --git a/mcts/pucb/pucb.py b/mcts/pucb/pucb.py index a9bd367..688235e 100644 --- a/mcts/pucb/pucb.py +++ b/mcts/pucb/pucb.py @@ -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: diff --git a/program.py b/program.py index d5ed5b5..e9db15d 100644 --- a/program.py +++ b/program.py @@ -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"