Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 526 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 526 Bytes

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.