Skip to content
/ ort Public
forked from pytorch/ort

Accelerate PyTorch models with ONNX Runtime

License

Notifications You must be signed in to change notification settings

chilo-ms/ort

This branch is 141 commits behind pytorch/ort:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e0958e9 · Mar 2, 2022
Mar 2, 2022
Oct 12, 2021
Mar 2, 2022
Mar 2, 2022
Sep 7, 2021
Mar 2, 2022
Jul 13, 2021
May 12, 2021
Apr 1, 2021
May 13, 2021
Sep 21, 2021
Mar 13, 2021
Oct 11, 2021
Sep 21, 2021
Mar 10, 2021
Mar 17, 2021
Apr 19, 2021
May 14, 2021
Sep 21, 2021
Aug 12, 2021

Repository files navigation

Accelerate PyTorch models with ONNX Runtime

ONNX Runtime for PyTorch accelerates PyTorch model training using ONNX Runtime.

It is available via the torch-ort python package.

This repository contains the source code for the package, as well as instructions for running the package.

Pre-requisites

You need a machine with at least one NVIDIA or AMD GPU to run ONNX Runtime for PyTorch.

You can install and run torch-ort in your local environment, or with Docker.

Install in a local Python environment

Default dependencies

By default, torch-ort depends on PyTorch 1.9.0, ONNX Runtime 1.9.0 and CUDA 10.2.

  1. Install CUDA 10.2

  2. Install CuDNN 7.6

  3. Install torch-ort

    • pip install torch-ort
  4. Run post-installation script for ORTModule

    • python -m torch_ort.configure

Get install instructions for other combinations in the Get Started Easily section at https://www.onnxruntime.ai/ under the Optimize Training tab.

Verify your installation

  1. Clone this repo

  2. Install extra dependencies

    • pip install wget pandas sklearn transformers
  3. Run the training script

    • python ./ort/tests/bert_for_sequence_classification.py

Add ONNX Runtime for PyTorch to your PyTorch training script

from torch_ort import ORTModule
model = ORTModule(model)

# PyTorch training script follows

Samples

To see torch-ort in action, see https://github.com/microsoft/onnxruntime-training-examples, which shows you how to train the most popular HuggingFace models.

License

This project has an MIT license, as found in the LICENSE file.

About

Accelerate PyTorch models with ONNX Runtime

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 60.7%
  • Shell 39.3%