Kendrick Tan

Results 14 comments of Kendrick Tan

Using React Hooks: ```javascript type RestartingTypistProps = { children: Node, }; const RestartingTypist = (props: RestartingTypistProps) => { const [done, setDone] = useState(false); const { children } = props; useEffect(()...

It's hard to explain, but here's a code snippet that explain what partial functions do. ``` def f(a): def F(b): return b + 5 return F >>> fun = f(10)...

Oh whoops you are completely right, it should be registering the hook with the partial function and appending X to the activations, not the other way around. I should have...

fixed in https://github.com/jacobgil/pytorch-pruning/pull/4/commits/212f1b5b65d51be0b39a03d000516934aeb08486

Unfortunately that is not possible on metamask https://github.com/MetaMask/metamask-extension/issues/2506 I really wanted that to work but for now you need the actual private key :\

@marcelomorgado Thanks for the inputs. @adrianmcli is right - the original goal I had in mind with moonnet was to minimize iteration time, and the largest bottleneck for me was...

hi @angusturner Unfortunately I don't own the domain anymore.... Should be able to just `yarn start` it :smile:

I still haven't pinpoint the exact package that is causing this, truffle-decode-utils is just a hypothesis atm, will open an issue once I confirm it

Woah, completely missed this issue. Apologies. Unfortunately I'm not able to reproduce this error :cry: and can't debug it from here My intuition tells me thats something to do with...

@lemoncalamitous run `train.py` to train your NN on the collected data, once that's done run `autonomous.py` to let the trained NN play the game.