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

First work on paginated tensors. #81

Open chewxy opened 3 years ago

ghost commented 3 years ago

Thanks for opening this one up @chewxy!

I guess we want to integrate the paginated code following the existing file structure e.g., paginated_format.go, paginated_arith.go. Likely getting the code to follow closely to the Dense type.

Or do we want to try to integrate pagination as an option on a Dense tensor? It would probably just blow up the amount of code inside the Dense files.

EDIT: or we can just move everything into a new folder like you started.