An universal deep learning models conversor
The general idea of this project is to convert any deep learning framework model to another. Each deep learning framework has its own structure representation defined by its layers, parameters and syntax. This structure representation makes difficult to swap from one framework to another. The project tries to solve this problem in a straightforward manner, making it simple for the non-experienced users. The project fills this gap using an inner representation which is the bridge between all deep learning frameworks.
You can convert from one framework to another
import DeepRosetta as dr
if __name__ == '__main__':
rosetta = dr.RosettaStone()
rosetta.convert('my.caffemodel', 'your.caffemodel', 'DummyCaffeImporter', 'DummyCaffeExporter')
print 'All went OK!'
-
Importers
- CaffeImporter
- MatConvnetImporter
- LasagneImporter
- TorchImporter
- TensorflowImporter
- ChainerImporter
- TinyCNNImporter
-
Exporters
- CaffeExporter
- MatConvnetExporter
- LasagneExporter
- TorcExporter
- TensorflowExporter
- ChainerExporter
- TinyCNNExporter
Developers are needed! Check our Contribution Documents.
the BSD 3-Clause Licence