You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
General Usage
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!'
Supported formats
Importers
CaffeImporter
MatConvnetImporter
LasagneImporter
TorchImporter
TensorflowImporter
ChainerImporter
TinyCNNImporter
Exporters
CaffeExporter
MatConvnetExporter
LasagneExporter
TorcExporter
TensorflowExporter
ChainerExporter
TinyCNNExporter
Contributing
Developers are needed! Check our Contribution Documents.