remove debug

This commit is contained in:
Adrien Marquès 2018-10-15 07:43:38 +02:00
parent eee503a405
commit f30f465e89
1 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package nn
import (
"encoding/json"
"fmt"
"gonum.org/v1/gonum/mat"
"io"
"io/ioutil"
@ -91,7 +90,6 @@ func (net *Network) UnmarshalJSON(in []byte) error {
for _, layer := range net.layers {
net.neurons = append(net.neurons, mat.NewDense(int(layer), 1, nil))
}
fmt.Printf("neurons: %v\n", net.neurons)
// extract into the current network receiver (net)
return nil