File size: 816 Bytes
2393ba7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
---
base_model: facebook/bart-large-mnli
datasets:
- multi_nli
license: mit
pipeline_tag: zero-shot-classification
tags:
- openvino
- openvino-export
thumbnail: https://huggingface.co/front/thumbnails/facebook.png
---
This model was converted to OpenVINO from [`facebook/bart-large-mnli`](https://huggingface.co/facebook/bart-large-mnli) using [optimum-intel](https://github.com/huggingface/optimum-intel)
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
First make sure you have optimum-intel installed:
```bash
pip install optimum[openvino]
```
To load your model you can do as follows:
```python
from optimum.intel import OVModelForSequenceClassification
model_id = "Smashyalts/bart-large-mnli-openvino"
model = OVModelForSequenceClassification.from_pretrained(model_id)
```
|