tfwu / DeepRosetta

An universal deep learning models conversor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alt text

Join the chat at https://gitter.im/edgarriba/DeepRosetta Build Status License

An universal deep learning models conversor :shipit:

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.

Licence

the BSD 3-Clause Licence

About

An universal deep learning models conversor

License:Other


Languages

Language:Protocol Buffer 54.6%Language:Python 43.5%Language:Shell 1.9%