Numpy-Neuron / nn /main.go
Jensen-holm's picture
splitting up code into seperate modules
dfd3544
raw
history blame
128 Bytes
package nn
import "github.com/Jensen-holm/ml-from-scratch/alg"
type NN struct {
alg.Alg
}
func New(rp *RequestPayload) {
}