CoolFace
Modelpublic

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

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes22kdownloads
Model Card

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:

bash
pip install optimum-intel

To load your model you can do as follows:

python
from optimum.intel import OVModelForSequenceClassification

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