echarlaix/distilbert-base-uncased-distilled-squad-openvino

🤗 Hugging Face sourcequestion-answeringapache-2.0265 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-distilled-squad-openvino ./model-folder
Needs a seeder →

This model was converted to OpenVINO from distilbert/distilbert-base-uncased-distilled-squad using optimum-intel via the export space.

First make sure you have optimum-intel installed:

pip install optimum[openvino]

To load your model you can do as follows:

from optimum.intel import OVModelForQuestionAnswering

model_id = "echarlaix/distilbert-base-uncased-distilled-squad-openvino"
model = OVModelForQuestionAnswering.from_pretrained(model_id)