You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I'm looking for the exactly input and output of the model for Connect6.
Each move of the Connect6 consists of two decisions: place the first piece and second piece. How do you handle the large action space for a move?
Do the model output the two actions (a move) at the same time? or other ways?
I have read nn/model.py and defs/gamedesc.py , but no where to find the model settings for Connect6 and I still confuse about the exactly input and output (policy part).
Could you give me some advices about my questions? or point out which part should I dive into.
Firstly, I want to say "Good work".
I'm looking for the exactly input and output of the model for Connect6.
Each move of the Connect6 consists of two decisions: place the first piece and second piece.
How do you handle the large action space for a move?
Do the model output the two actions (a move) at the same time? or other ways?
I have read nn/model.py and defs/gamedesc.py , but no where to find the model settings for Connect6 and I still confuse about the exactly input and output (policy part).
Could you give me some advices about my questions? or point out which part should I dive into.