How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="echarlaix/distilgpt2-openvino")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("echarlaix/distilgpt2-openvino")
model = AutoModelForCausalLM.from_pretrained("echarlaix/distilgpt2-openvino", device_map="auto")
Quick Links

This model was converted to OpenVINO from distilbert/distilgpt2 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 OVModelForCausalLM

model_id = "echarlaix/distilgpt2-openvino"
model = OVModelForCausalLM.from_pretrained(model_id)
Downloads last month
22
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for echarlaix/distilgpt2-openvino

Finetuned
(1531)
this model
Finetunes
2 models

Dataset used to train echarlaix/distilgpt2-openvino

Evaluation results