All Projects → vadimkantorov → caffemodel2json

vadimkantorov / caffemodel2json

Licence: other
A small tool to dump Caffe's *.caffemodel to JSON for inspection

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to caffemodel2json

erda-infra
Erda Infra is a lightweight microservices framework implements by golang, which offers many useful modules and tools to help you quickly build a module-driven application
Stars: ✭ 152 (+280%)
Mutual labels:  protobuf
flipper
Search/Recommendation engine and metainformation server for fanfiction net
Stars: ✭ 29 (-27.5%)
Mutual labels:  protobuf
mine.js
🌏 A voxel engine built with JS/TS/RS. (formerly mc.js) (maybe mine.ts? or even mine.rs?)
Stars: ✭ 282 (+605%)
Mutual labels:  protobuf
tinyrpc
Much fast, lightweight, async, based boost.beast and protobuf.
Stars: ✭ 32 (-20%)
Mutual labels:  protobuf
arcface retinaface mxnet2onnx
arcface and retinaface model convert mxnet to onnx.
Stars: ✭ 53 (+32.5%)
Mutual labels:  caffe
caffe-char-rnn
Multi-layer Recurrent Neural Networks (with LSTM) for character-level language models in Caffe
Stars: ✭ 25 (-37.5%)
Mutual labels:  caffe
python-riemann-client
A Riemann client and command line tool
Stars: ✭ 38 (-5%)
Mutual labels:  protobuf
protobuf-decoder
JavaScript-based web UI to decode ad-hoc Protobuf data
Stars: ✭ 107 (+167.5%)
Mutual labels:  protobuf
mongo-db-go-protobuf-tutorial
Source code for "New official MongoDB Go Driver and Google Protobuf - making them work together" article
Stars: ✭ 18 (-55%)
Mutual labels:  protobuf
ck-crowd-scenarios
Public scenarios to crowdsource experiments (such as DNN crowd-benchmarking and crowd-tuning) using Collective Knowledge Framework across diverse mobile devices provided by volunteers. Results are continuously aggregated at the open repository of knowledge:
Stars: ✭ 22 (-45%)
Mutual labels:  caffe
luban
你的最佳游戏配置解决方案 {excel, csv, xls, xlsx, json, bson, xml, yaml, lua, unity scriptableobject} => {json, bson, xml, lua, yaml, protobuf(pb), msgpack, flatbuffers, erlang, custom template} data + {c++, java, c#, go(golang), lua, javascript(js), typescript(ts), erlang, rust, gdscript, protobuf schema, flatbuffers schema, custom template} code。
Stars: ✭ 1,660 (+4050%)
Mutual labels:  protobuf
tensorrt-ssd-easy
No description or website provided.
Stars: ✭ 32 (-20%)
Mutual labels:  caffe
modified refinedet
Modified RefineDet
Stars: ✭ 23 (-42.5%)
Mutual labels:  caffe
rpc-spring-boot-starter
自定义rpc框架,支持Java序列化和protobuf序列化协议,多种负载均衡算法
Stars: ✭ 75 (+87.5%)
Mutual labels:  protobuf
apache-flink-jdbc-streaming
Sample project for Apache Flink with Streaming Engine and JDBC Sink
Stars: ✭ 22 (-45%)
Mutual labels:  protobuf
Xception-caffe
Xception implemented with caffe
Stars: ✭ 45 (+12.5%)
Mutual labels:  caffe
MobileNet-SSD-windows
No description or website provided.
Stars: ✭ 91 (+127.5%)
Mutual labels:  caffe
J1939-Framework
Framework to work with J1939 Frames used in CAN bus in bus, car and trucks industries
Stars: ✭ 123 (+207.5%)
Mutual labels:  protobuf
pronto
Clojure support for protocol buffers
Stars: ✭ 66 (+65%)
Mutual labels:  protobuf
protobuf-smalltalk
Protocol buffers support for Smalltalk
Stars: ✭ 14 (-65%)
Mutual labels:  protobuf

Description

A small tool to dump Caffe's *.caffemodel and *.binaryproto files to JSON for inspection (*.prototxt files is not needed). By default caffe.proto from the official Caffe repository is used. Python and protobuf with Python bindings are dependencies.

Usage

# to dump model structure without weights (unless `--data` switch is used) to JSON, using default caffe.proto:
./caffemodel2json.py model.caffemodel > dump.json

# to dump model structure without weights (unless `--data` switch is used) to JSON:
./caffemodel2json.py model.caffemodel CAFFE_ROOT/src/caffe/proto/caffe.proto > dump.json

# to dump a binaryproto:
wget http://dl.caffe.berkeleyvision.org/caffe_ilsvrc12.tar.gz
mkdir -p imagenet_mean && tar -xf caffe_ilsvrc12.tar.gz -C imagenet_mean
./caffemodel2json.py imagenet_mean/imagenet_mean.binaryproto --data > imagenet_mean.json

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].