Shane McAndrew
Shane McAndrew
Hello, When I test the [Basic Example](https://github.com/redis/node-redis#basic-example) with my Redis Cloud account, node hangs indefinitely testredis.js ----------- ``` import { createClient } from 'redis'; (async () => { const client...
Hello, I tried transpiling the [Ace editor](https://github.com/ajaxorg/ace/tree/v1.4.13/lib/ace) tree to ES6 but it failed due to several problems such as missing file extensions (`.js`) on the import `module-names` and `Error: Dynamic...
In your [blog](https://joshvarty.github.io/AlphaZero/), you emphasize "We record the **state** and the **probabilities produced by the MCTS**" Do you mean we record board state, priors and values? [Trainer.exceute_episode](https://github.com/JoshVarty/AlphaZeroSimple/blob/master/trainer.py#L45) `ret.append((hist_state, hist_action_probs, reward...
Hi Josh, In order to better understand the code, I tested it with plain pytorch without CUDA but it failed with `AssertionError: Torch not compiled with CUDA enabled` from `File...