Skip to content
/ gocaffe Public

implement Caffe deep learning framework in pure golang

License

Notifications You must be signed in to change notification settings

cvley/gocaffe

Repository files navigation

gocaffe

implement Caffe deep learning framework in pure golang, still in progress.

Using protocol buffers with Go

To compile the protocol buffer difinition, run proboc with the --go_out parameter set to the directory you want to output the Go code to:

protoc --go_out=. *.proto

The generated files will be suffixed.pb.go. Refer to golang protobuf for more information.

Using Gonum BLAS

More information can be found in blas.