Metadata-Version: 2.1
Name: torchort
Version: 0.0.7.dev20210315
Summary: training Pytorch models with onnxruntime
Home-page: https://github.com/pytorch/ort
Author: torchort contributors
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pytorch/ort/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: onnxruntime-gpu (>=1.7)
Requires-Dist: torch (>=1.8)

# training pytorch models with onnxruntime

## to build (you need to update version number in version.txt in order to be able to upload python whl):
    rm dist/*
    python setup.py bdist_wheel

## to publish:
    twine upload dist/*

## to install:
### stable:
    pip install torchort

### nightly:
    pip install --pre torchort

## to use torchort within PyTorch training scripts:
    import onnxruntime
    from torchort import ORTModule
    model = ORTModule(model)
    # normal PyTorch training script follows


