Gonum – Numerical Computing for Go
gonum.org
Gonum – Numerical Computing for Go
1–10 of 47 posts
Re: Gonum – Numerical Computing for Go
#2Re: Gonum – Numerical Computing for Go
#3Re: Gonum – Numerical Computing for Go
#4What's the use case for this? Machine learning? But data? General math use?
Re: Gonum – Numerical Computing for Go
#5Re: Gonum – Numerical Computing for Go
#6Re: Gonum – Numerical Computing for Go
#7wonder how this compares to numpy/scipy in terms of features and performance. Looks pretty comprehensive.
Re: Gonum – Numerical Computing for Go
#8A solid, featureful & performant numerics library seems like a really good match for Go---if it can match numpy but also provide benefits like the safety of types, binary compilation, and better performance in non-numeric code, that's a really exciting case for sliding away from python?
Of course, it just provides convenience, but it's what makes writing stuff in numpy, Tensorflow, Eigen, etc elegant.
Re: Gonum – Numerical Computing for Go
#9What's the use case for this? Machine learning? But data? General math use?
Our library was just open sourced (and still in my personal account, until we add more documentation): https://github.com/jbochi/facts
Re: Gonum – Numerical Computing for Go
#10A solid, featureful & performant numerics library seems like a really good match for Go---if it can match numpy but also provide benefits like the safety of types, binary compilation, and better performance in non-numeric code, that's a really exciting case for sliding away from python?
I have done some numeric programming in Go and compared to Python it's really hampered by the lack of operator overloading. Of course, it just provides convenience, but it's what makes writing stuff in numpy, Tensorflow, Eigen, etc elegant.
Lately I do a lot of numpy/tensorflow, and have begun to really dislike the slowness of python. It would be great to do that work in Go specifically.