https://github.com/d4l3k/go-caffe2
caffe2 bindings for Go
https://github.com/d4l3k/go-caffe2
caffe2 golang pytorch
Last synced: about 2 months ago
JSON representation
caffe2 bindings for Go
- Host: GitHub
- URL: https://github.com/d4l3k/go-caffe2
- Owner: d4l3k
- License: mit
- Created: 2018-11-17T07:01:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-18T22:14:30.000Z (over 7 years ago)
- Last Synced: 2025-04-02T19:09:58.001Z (about 1 year ago)
- Topics: caffe2, golang, pytorch
- Language: Go
- Homepage: https://godoc.org/github.com/d4l3k/go-caffe2
- Size: 57.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-caffe2 [](https://godoc.org/github.com/d4l3k/go-caffe2)
This provides caffe2 bindings for Go.
You need to install caffe2 to your system first.
```sh
$ go get -u github.com/d4l3k/go-caffe2
```
See TestNet for an example of creating a new net with blobs and running it:
https://github.com/d4l3k/go-caffe2/blob/master/net_test.go
## Development
Check the code out with submodules
```sh
$ git clone --recurse-submodules -j16 git@github.com:d4l3k/go-caffe2.git
```
Install go protoc: https://github.com/golang/protobuf#installation
Generate protobuf sources and test:
```
make
```
## License
go-caffe2 is licensed under the MIT license.