Benjamin Diamond

Results 60 comments of Benjamin Diamond

hi all (@fanatid)—any update on this? thank you!

great, thanks, please keep posted.

hi @fanatid sorry for the delay! it's a bit tricky to test this, because `elliptic` imports its own BN.js...? PR looks good though, big thanks for this.

@fanatid excellent! i can confirm that the issue is fixed. feel free to close.

By way of example, consider the following trivial verilog circuit. ```verilog module adder ( input [15 : 0] a, b, output [15 : 0] out ); assign out = a...

Hi @Akababa, this looks great, I'm going over it now. In the mean time, I noticed your `flip_policy` step. Could you say more about this? @Zeta36 I'm wondering if this...

Also, why did you remove the manual annealing of the learning rate?

Yes. I can't believe we didn't think of this. @Akababa, kudos! I'll be looking through your code making sense of everything. I'll let you know how things work.

@Akababa The point is that I had developed a "DeepMind-style" feature plane input on my own, but I hadn't realized (as you did) that the policy vector needed to be...

Yes, they did. You can see my current approach [here](https://github.com/benediamond/chess-alpha-zero/blob/af7caee80929193522afb30fbd66b4ca56935b14/src/chess_zero/env/chess_env.py#L177). Here is another quick question. It appears that you clear the move tables at the beginning of each call to...