echarlaix/distilbert-base-uncased-finetuned-sst-2-english-openvino

🤗 Hugging Face sourcetext-classificationapache-2.0536 MBother✓ 1 checksumupdated today
Submit in one command

Run it next to your model folder. It makes the torrent, checks your files against Hugging Face, and submits it. You just start seeding and paste your key from your account. It only reads your files and never changes them. Read the script first if you like.

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo echarlaix/distilbert-base-uncased-finetuned-sst-2-english-openvino ./model-folder
Needs a seeder →

This model was converted to OpenVINO from distilbert/distilbert-base-uncased-finetuned-sst-2-english using optimum-intel via the export space.

First make sure you have optimum-intel installed:

pip install optimum-intel

To load your model you can do as follows:

from optimum.intel import OVModelForSequenceClassification

model_id = "echarlaix/distilbert-base-uncased-finetuned-sst-2-english-openvino"
model = OVModelForSequenceClassification.from_pretrained(model_id)