zhenfelix
zhenfelix
It seems pure MCTS became intelligent only after I increased n_playout to 2000, since the pure MCTS AI choose not to stop me even when I had 3 or 4...
KMeans implementation issue ```python centers = np.array([X[clusters == c].mean(0) for c in clusters]) ``` centers's shape is not right, the correct implementation is suggested as ```python centers = np.array([X[clusters ==...
your implementation of ```cpp std::vector kNN::nearestNeighbors(std::vector x){ LinAlg alg; // The nearest neighbors std::vector knn; std::vector inputUseSet = inputSet; //Perfom this loop unless and until all k nearest neighbors are...
Thanks for your nice theme, I encountered a formatting issue after I pushed your demo to my repository,  as you can see, the positions and sizes of search boxes,...