Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinkit/coldcoffetohotcoffe
Converts the old caffe format used in prototxt to describe the nets to the newer version.
https://github.com/kevinkit/coldcoffetohotcoffe
caffe conversion converter deep-learning python
Last synced: 3 days ago
JSON representation
Converts the old caffe format used in prototxt to describe the nets to the newer version.
- Host: GitHub
- URL: https://github.com/kevinkit/coldcoffetohotcoffe
- Owner: kevinkit
- Created: 2017-02-02T13:43:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-16T12:26:41.000Z (almost 8 years ago)
- Last Synced: 2024-11-23T10:42:05.381Z (2 months ago)
- Topics: caffe, conversion, converter, deep-learning, python
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ColdCoffeToHotCoffe
Converts the old caffe format used in prototxt to describe the nets to the newer version.# Supported Layers:
The following layers are supported at the moment, more will follow. Feel free to contribute.old: ... new:
layers ... layer
CONVOLUTION ... "Convolution"
RELU ... "Relu"
LRN ... "LRN"
POOLING ... "Pooling"
INNER_PRODUCT ... "InnerProduct"
SOFTMAX ... "Softmax"
DROPOUT ... "Dropout"
An overview of all layers can be found at: http://caffe.berkeleyvision.org/tutorial/layers.html#Howto
Define the Variable "filename" in the converter.py script to tell which file should be converter. The output will be "new" + filename .