-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
self-play: 155 parameters not match with the called function #9
Comments
Which version are you running ? This should be fixed in master. |
A___line: 155(self_play.py): game_data = play_game(model, model, mcts_simulations, conf['STOP_EXPLORATION'], self_play=True, resign_model1=resign, resign_model2=resign) |
I changed A to "game_data = play_game(model, model, mcts_simulations, conf['STOP_EXPLORATION'], True, None, resign_model1=resign, resign_model2=resign) and the result seems correct! and the game record seems reasonable. |
You should not have non named arguments (None is non named argument, after self_play=True, which is a named argument). Which version of python are you runninng ? Also num_moves should be None by default |
the latest master |
"game_data = play_game(model, model, mcts_simulations, conf['STOP_EXPLORATION'], True, None, resign_model1=resign, resign_model2=resign" as above |
Which version of python are you running ? |
python 3.5 |
it works fine only produces to much moves! |
Ok, I'm closing this, for the fill eyes use #12 plz. |
a few hours, it seems reasonable! |
ok, thank you |
Don't be so sure, I've been running it on 9x9 for quite a while, it's still easily beatable. Looking at leela it looks like it needs quite a few games before making decent progress. |
No description provided.
The text was updated successfully, but these errors were encountered: