Brendan Hansknecht
Brendan Hansknecht
I was looking into this and I noticed that the results seem mostly dependent on the weight initialization. If you simply rerun the file multiple times, you can get results...
Also, commenting out self.apply(init_weights) makes things run slightly better in general.
So, I tested a large number of hyper parameters and this seems to work a lot more consistently: ``` hidden_size = 32 lr = 1e-3 num_steps = 128 mini_batch_size =...
So just for testing, I changed to using a ring buffer. I am able to successfully deal with more charters. The way I implemented things, it still is very easy...
Sure, though I don't think it is particularly useful for other. It is just a simple ring buffer for serial. The buffer needs to be dealt with in a smart...
An extra follow up. This is roughly what Arduino does: They have 1 interrupt for receiving data. It will receive 1 character of data and put it into their receive...
One more follow up that at least address some of what can be done in userland. This gist is a bit more proper. It sets up an rx recieve interrupt....
This is a pretty old library, you would probably be better using: https://github.com/kevaday/alphazero-general or https://github.com/bhansconnect/alphazero-pybind11 The first library is kinda a continuation of this library by someone else. I have...
Hi, Just realized that I accidentally made a duplicate of this issue and wanted to post some of my context here. I have run into issues with benchmarks that are...
Oh, one extra note, I think standard error is much more important than standard deviation in these cases. For example, if you have a script that takes 20 millisecond to...