suedepaid
suedepaid t1_ivs1fm3 wrote
Reply to [Project] Rebel Poker AI by Character_Bluejay601
Still want to give it a shot?
suedepaid t1_ivjwvxc wrote
Reply to [Project] Rebel Poker AI by Character_Bluejay601
I would be super interested !!! I’ve run their Liar’s Dice implementation locally, and tried to adapt the algo for my own game, but would love to push into poker.
Where/how would you want to collaborate?
suedepaid t1_iumqiu8 wrote
Depends on exactly what “prototyping” means to you.
For just pushing layers around and stuff it’s fine because you can just use CPU and verify that your model compiles and batches flow, etc etc.
For like “train for 5 epochs and tweak hyperparams” it’s tough. You can wait out CPU-only training. Or sometimes you can use the GPU in pytorch and that’s great when it works. But like, the pytorch LSTM layer is literally implemented wrong on MPS (that’s what the M1 GPU is called, equivalent to “CUDA”). So you’ll get shape errors lol.
Basically it’s fairly unstable to train on anything but CPU.
suedepaid t1_izco494 wrote
Reply to comment by ReginaldIII in [R] The Forward-Forward Algorithm: Some Preliminary Investigations [Geoffrey Hinton] by shitboots
I was also frustrated about that, but I went on the website and it looks like they're gonna publish them all in a couple weeks. Still a bit frustrated at the delay, but it's a bit understandable.