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
Hi all!!
As I experiment with different hyperparameters, I would like to be able to train different networks with exactly the same feature-labels, so that any different in performance would be due to the hyperparameters and not the data itself.
Similarly, I have my own collection of historical go games, and would like to be able to train networks with those games instead of the KGS games.
As I'm relatively new to Python, the task of modifying the existing code (parallel_processor.py, generator.py, etc) is quite daunting. So before I give it a try myself I rather ask. Has anyone implemented something in this line, and would be willing to share it?
Thanks a lot
The text was updated successfully, but these errors were encountered:
The differences from the processor in the book are:
The book processor downloads the KGS SGFs for you; the badukai code just reads them from your disk. So if you already have a game collection, you can just point it there
The book processor does random downsampling to fit things in memory, the badukai code uses the whole corpus
The badukai code handles breaking up a large corpus into deterministic chunks that fit in memory
The badukai code lets you stop training and resume where you left off
I wrote the badukai code after finishing the book, so it uses similar conventions to the book, but not identical. I hope this makes it easier to follow rather than harder 😅. Let me know if this helps!
Hi all!!
As I experiment with different hyperparameters, I would like to be able to train different networks with exactly the same feature-labels, so that any different in performance would be due to the hyperparameters and not the data itself.
Similarly, I have my own collection of historical go games, and would like to be able to train networks with those games instead of the KGS games.
As I'm relatively new to Python, the task of modifying the existing code (
parallel_processor.py, generator.py, etc
) is quite daunting. So before I give it a try myself I rather ask. Has anyone implemented something in this line, and would be willing to share it?Thanks a lot
The text was updated successfully, but these errors were encountered: