David J Wu

Results 304 comments of David J Wu

What are you setting nnMaxBatchSize to?

That's interesting! * What happens if you use only 1x4090 instead of 3x4090? * What happens if you run a different number of games in parallel than 288? * Do...

Thanks for reporting, yeah this is an ugly conflict between the neural net deduplication code and the parameter indexing code where neither part was written with attention to the other....

Do you know where the lib and include dirs are for your OpenCL installation? If so, it may work to specify `-DOpenCL_LIBRARY=... -DOpenCL_INCLUDE_DIR=...` but replacing the ... with the appropriate...

Thanks for the report and thanks for the contributions! Unfortunately, it sounds like your GPU may have malfunctioned. The path mentioned in an error is a path to the source...

In principle, I think you could use the "avoidMoves" parameter documented at https://github.com/lightvector/KataGo/blob/master/docs/Analysis_Engine.md to prohibit every possible legal move for the opponent except for passing on the second ply, as...

Cool. You've probably already seen the documentation at https://github.com/lightvector/KataGo/blob/master/docs/Analysis_Engine.md but please read it more carefully, for example you tried to provide an "sgf" field but the documentation does not ever...

There's a chance that your TensorRT and CUDA versions are too recent. I suspect the NVIDIA libraries are not always backwards compatible, and the precompiled exes are using older versions...

Variance is proportional to the index of blocks + 1, because every time you have a (+), you are adding two things that we idealize as uncorrelated random vectors. When...

I updated https://github.com/lightvector/KataGo/blob/master/docs/KataGoMethods.md#fixed-variance-initialization-and-one-batch-norm with an additional diagram to make this more clear. The point of this is to choose an initialization scale so that the entire operation the net is...