The problematic line of code I found is shown below.
(Thas is in src->tot->tasks->game24.py line 91)
sum(value * value_names.count(name) for name, value in value_map.items())
In the above code, the problem was caused by the value_names being in the list type rather than a string.
As a result, we can see that the first string of value_names does not count even though it has 'sure' in it, as shown in the WATCH part of the figure below.
This also happens when n_evaluate_sample=1.
So, I modified the code to look like this.
sum(value * target_value.count(name) for name, value in value_map.items() for target_value in value_names)
First, thank you for releasing your awesome paper and code.
I found one problem when I ran your Quick Start code that is written in README. (That is below)
The problematic line of code I found is shown below. (Thas is in src->tot->tasks->game24.py line 91)
In the above code, the problem was caused by the value_names being in the list type rather than a string.
As a result, we can see that the first string of value_names does not count even though it has 'sure' in it, as shown in the WATCH part of the figure below.
This also happens when n_evaluate_sample=1.
So, I modified the code to look like this.
Thank you for reading and have a great day!