From 3606c226c0c6305590c51b46b3a3bcf8de9f8aea Mon Sep 17 00:00:00 2001 From: Yuki Kobayashi Date: Mon, 1 Jan 2024 23:01:05 +0900 Subject: [PATCH] version up --- mcts/pucb/pucb.py | 2 +- program.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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"