maxpumperla / deep_learning_and_the_game_of_go

Code and other material for the book "Deep Learning and the Game of Go"
https://www.manning.com/books/deep-learning-and-the-game-of-go
953 stars 387 forks source link

The assert statement in the __init__ function of Move is not correct #101

Open cs221313 opened 2 years ago

cs221313 commented 2 years ago
assert (point is not None) ^ is_pass ^ is_resign

should be:

assert ((point is not None) ^ is_pass ^ is_resign) and not ((point is not None) and is_pass and is_resign)
zz394 commented 2 years ago

why I cannot download the file "features-40.npy" and "labels-40.npy"?