Metadata-Version: 1.1
Name: onnxmltools
Version: 1.0.0.0
Summary: Converts Machine Learning models to ONNX
Home-page: https://github.com/onnx/onnxmltools
Author: Microsoft Corporation
Author-email: onnx@microsoft.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: 
        .. image:: https://github.com/onnx/onnxmltools/raw/master/docs/ONNXMLTools_logo_main.png
        
        .. list-table::
           :widths: 4 4
           :header-rows: 0
           
           * - .. image:: https://travis-ci.org/onnx/onnxmltools.svg?branch=master
                    :target: https://travis-ci.org/onnx/onnxmltools
                    :alt: Build Status Linux
             - .. image:: https://ci.appveyor.com/api/projects/status/d1xav3amubypje4n?svg=true
                    :target: https://ci.appveyor.com/project/xadupre/onnxmltools
                    :alt: Build Status Windows
        
        Introduction 
        ============
        
        ONNXMLTools enables you to convert models from different machine 
        learning toolkits into `ONNX <https://onnx.ai>`_. 
        Currently the following toolkits are supported:
        
        * Apple CoreML
        * scikit-learn
          (subset of models convertible to ONNX)
        
        Install
        =======
        
        ::
        
            pip install onnxmltools
        
        Dependencies
        ============
        
        `scikit-learn <http://scikit-learn.org/stable/>`_ is needed to convert
        a scikit-learn model, `coremltools <https://pypi.python.org/pypi/coremltools>`_
        for Apple CoreML.
        
        Example
        =======
        
        Here is a simple example to convert a CoreML model:
        
        ::
        
            import onnxmltools
            import coremltools
        
            model_coreml = coremltools.utils.load_spec("image_recognition.mlmodel")
            model_onnx = onnxmltools.convert.convert_coreml(model_coreml, "Image_Reco")
        
            # Save as text
            onnxmltools.utils.save_text(model_onnx, "image_recognition.json")
        
            # Save as protobuf
            onnxmltools.utils.save_model(model_onnx, "image_recognition.onnx")
        
        License
        =======
        
        MIT License
        
        Acknowledgments
        ===============
        
        The initial version of this package was developed by the following 
        developers and data scientists at Microsoft during winter 2017: 
        Zeeshan Ahmed, Wei-Sheng Chin, Aidan Crook, Xavier Dupre, Costin Eseanu, 
        Tom Finley, Lixin Gong, Scott Inglis, Pei Jiang, Ivan Matantsev, 
        Prabhat Roy, M. Zeeshan Siddiqui, Shouheng Yi, Shauheen Zahirazami, Yiwen Zhu.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
