├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── feature_extraction_pipeline_benchmark.png ├── qa_pipeline_benchmark.png └── social_preview.jpeg ├── notebooks └── benchmark_pipelines.ipynb ├── onnx_transformers ├── __init__.py └── pipelines.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_pipelines_onnx.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/README.md -------------------------------------------------------------------------------- /data/feature_extraction_pipeline_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/data/feature_extraction_pipeline_benchmark.png -------------------------------------------------------------------------------- /data/qa_pipeline_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/data/qa_pipeline_benchmark.png -------------------------------------------------------------------------------- /data/social_preview.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/data/social_preview.jpeg -------------------------------------------------------------------------------- /notebooks/benchmark_pipelines.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/notebooks/benchmark_pipelines.ipynb -------------------------------------------------------------------------------- /onnx_transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/onnx_transformers/__init__.py -------------------------------------------------------------------------------- /onnx_transformers/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/onnx_transformers/pipelines.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pipelines_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patil-suraj/onnx_transformers/HEAD/tests/test_pipelines_onnx.py --------------------------------------------------------------------------------