2Bear / othello-zero

An implementation of the AlphaGo Zero and the AlphaZero algorithm for othello playing.
MIT License
21 stars 3 forks source link

No checkpoint file #1

Closed ixanezis closed 4 years ago

ixanezis commented 4 years ago

In order to use checkpoints files successfully, there must be something like a 'checkpoint' file in protobuf format as well... Didn't find it in checkpoint.zip

2Bear commented 4 years ago

The checkpoint file is just a bookmark file. You can create it manually.

Create a new text file named checkpoint. Edit it. Here is a example, just one line:

model_checkpoint_path: "v117-14797350"

You can replace v117-14797350 with any checkpoint name such as v001-49150. In this way, you can choose different checkpoints to restore, and compare them.

Best.

ixanezis commented 4 years ago

Thanks. That has worked.