Error in the optimizer now after changes performed by Akababa
[root@localhost chess-alpha-zero-master]# python3 src/chess_zero/run.py opt
2017-12-26 16:55:29,154@chess_zero.manager INFO # config type: mini
Using TensorFlow backend.
2017-12-26 16:55:30,136@chess_zero.worker.optimize DEBUG # loading best model
2017-12-26 16:55:30,137@chess_zero.agent.model_chess DEBUG # loading model from /run/media/root/Fer_descargas/chess-alpha-zero-master/data/model/model_best_config.json
2017-12-26 16:55:30.975444: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:892] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2017-12-26 16:55:30.975705: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: GeForce GTX 1060 6GB major: 6 minor: 1 memoryClockRate(GHz): 1.8095
pciBusID: 0000:01:00.0
totalMemory: 5.93GiB freeMemory: 5.48GiB
2017-12-26 16:55:30.975718: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1060 6GB, pci bus id: 0000:01:00.0, compute capability: 6.1)
2017-12-26 16:55:31,533@chess_zero.agent.model_chess DEBUG # loaded model digest = 0c379712fcb4204eccea535e5ff099cde78f87037e9805c85d4738bc350adb12
Traceback (most recent call last):
File "src/chess_zero/run.py", line 16, in
Do you have files in your play_data folder? Although I agree the optimizer should check for that first.
I only have two big pgn files.
Ohh okay, as it stands currently you have to run "sl" on them first to convert into json, then "opt". But if it's helpful I have a version in my repo where opt can just read the pgns directly. It uses float16 though so you might have to ctrl+f back to float32 to make it work with the model from this repo.
Well, using the version in your repo, get this error:
[root@localhost Chess-Zero-float16]# python3 src/chess_zero/run.py sl
Using TensorFlow backend.
Traceback (most recent call last):
File "src/chess_zero/run.py", line 17, in
I just pushed again, but it might be easier to just use sl from this repo until I'm done experimenting with stuff.