Chewxy
Chewxy
Happy to help in any way. The world is missing Go Coq connections. It'd be so great to be able to check models in Coq.
Data: https://docs.google.com/spreadsheets/d/1vH3tFRTPn053CMT04DvvoblG8GIT4e6pvrZPfad4Dlw/edit#gid=804229072
To kick off this proposal, here's what is required to serialize anything into a npy file, and a go-equivalent type of the value (not complete, WIP): * dtype :: `string`...
What I like: npyio feels a lot more disciplined and structured than gorgonia's npy writer and reader. gonpy's implementation is surprisingly quite similar to gorgonia's. I only found a reader...
If this were to be a lib, wouldn't it be better that it handles everything? Then all a type would have to do is pass it its relevant params ```go...
Oops. Yes, sorry, unmarshal, not marshal. Ugh not yet had my morning coffee.
TIL you can't use unsafe in appengine
You can write one your own: https://github.com/gonum/gonum/tree/master/num/dual Also, the next version of Gorgonia will feature eager autodiff.
hi @brandondube ... try using `gorgonia.org/tensor` as a wrapper instead. Under the hood it uses Gonum's routines. ``` package main import ( "fmt" "log" "gorgonia.org/tensor" ) func main() { a...
My bad. That was doing an elementwise multiplication. I've just [made a pull request to gorgonia.org/tensor](https://github.com/gorgonia/tensor/pull/77) that allows matrix multiplication, matvecmul, dot prod, and outer to be called correctly. Dot...