gorgonia / tensor

package tensor provides efficient and generic n-dimensional arrays in Go that are useful for machine learning and deep learning purposes
Apache License 2.0
359 stars 49 forks source link

Reduction Ops fail #47

Closed bdleitner closed 4 years ago

bdleitner commented 4 years ago

While working on https://github.com/gorgonia/gorgonia/issues/326, I found that calls into the standard engine for max operations were failing if multiple (>2) reduction dimensions were given. I tracked this to a problem in the default engine where axis were tweaked due to prior reductions.

Filing this for tracking purposes. I intend to try and fix it myself.