Skip to main content

transformer_onnx

transformers_onnx is a simple package which can use inside transformers pipeline.

Install

pip install transformers_onnx

Convert model into Onnx format

#for question-answering
python -m transformers.onnx --feature "question-answering" -m nlpconnect/roberta-base-squad2-nq ./qa/

#for text-classification or zeroshot classification
python -m transformers.onnx --feature "sequence-classification" -m cross-encoder/nli-roberta-base ./classifier/

#for feature-extraction (last_hidden_state or pooler_output)
python -m transformers.onnx --feature "default" -m nlpconnect/dpr-ctx_encoder_bert_uncased_L-2_H-128_A-2 ./feature/

#for token-classification
python -m transformers.onnx --feature "token-classification" -m dslim/bert-base-NER ./ner/

Use transformers_onnx to run transformers pipeline

Question Answering

from transformers import pipeline, AutoTokenizer, AutoConfig
from transformer_onnx import OnnxModel

model = OnnxModel("qa/model.onnx", task="question-answering")
model.config = AutoConfig.from_pretrained("nlpconnect/roberta-base-squad2-nq")
tokenizer = AutoTokenizer.from_pretrained("nlpconnect/roberta-base-squad2-nq")
qa = pipeline("question-answering", model=model, tokenizer=tokenizer)

# Input data
context = ["Released on 6/03/2021",
        "Release delayed until the 11th of August",
        "Documentation can be found here: huggingface.com"]
# Define column queries
queries = ["What is Released date?", "till when delayed?", "What is the url?"]
qa(context=context, question=queries)

Text Classification/ Zero shot classification

from transformers import pipeline, AutoTokenizer, AutoConfig
from transformer_onnx import OnnxModel

model = OnnxModel("classifier/model.onnx", task="sequence-classification")
model.config = AutoConfig.from_pretrained("cross-encoder/nli-roberta-base")
tokenizer = AutoTokenizer.from_pretrained("cross-encoder/nli-roberta-base")
zero_shot = pipeline("zero-shot-classification", model=model, tokenizer=tokenizer)
zero_shot(sequences=["Hello Hiiii", "I am playing football"], candidate_labels=["Greeting", "Sports"])

Feature Extraction

from transformers import pipeline, AutoTokenizer, AutoConfig
from transformer_onnx import OnnxModel

# for last_hidden_state
model = OnnxModel("feature/model.onnx", task="last_hidden_state")
tokenizer = AutoTokenizer.from_pretrained("nlpconnect/dpr-ctx_encoder_bert_uncased_L-2_H-128_A-2")
feature_extractor = pipeline("feature-extraction", model=model, tokenizer=tokenizer)
feature_extractor(["Hello Hiiii", "I am playing football"])

# for pooler_output
model = OnnxModel("feature/model.onnx", task="pooler_output")
tokenizer = AutoTokenizer.from_pretrained("nlpconnect/dpr-ctx_encoder_bert_uncased_L-2_H-128_A-2")
feature_extractor = pipeline("feature-extraction", model=model, tokenizer=tokenizer)
feature_extractor(["Hello Hiiii", "I am playing football"])

NER

from transformers import pipeline, AutoTokenizer, AutoConfig
from transformer_onnx import OnnxModel

model = OnnxModel("ner/model.onnx", task="token-classification")
model.config = AutoConfig.from_pretrained("dslim/bert-base-NER")
tokenizer = AutoTokenizer.from_pretrained("dslim/bert-base-NER")
ner = pipeline("token-classification", model=model, tokenizer=tokenizer)
ner("My name is transformers and I live in github/huggingface")

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

transformers_onnx-0.0.2.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

transformers_onnx-0.0.2-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file transformers_onnx-0.0.2.tar.gz.

File metadata

  • Download URL: transformers_onnx-0.0.2.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.7.13

File hashes

Hashes for transformers_onnx-0.0.2.tar.gz
Algorithm Hash digest
SHA256 fafee518ee5a0304b72b29ccc2200a596ca3ed8018c2d108774d4f7a3e9b3f64
MD5 91e6bd44d26a2faf05fd2cce7659ca61
BLAKE2b-256 22e52e765580a0f7308739189294c4f7fda141e052a95028382dd76f7d477b5f

See more details on using hashes here.

File details

Details for the file transformers_onnx-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for transformers_onnx-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 16e60fae85c2250d461660ec3b94bec5b122bbb7a41a37a60c61df880f61f006
MD5 7bae47f90639279bdc02dcc5bc239f16
BLAKE2b-256 f703239688da65ed53b9c2ad33b7eb250d6265998643af9f006e4aba3edfaf9e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.0.2 This release

2 files

0.0.1

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page