File size: 203 Bytes
c268f0b
 
 
 
 
 
 
cce3d0b
c268f0b
1
2
3
4
5
6
7
8
9
from transformers import pipeline

generator = pipeline("text-generation", model="distilgpt2")
generator(
    "In this course, we will teach you how to",
    max_length=30,
    num_return_sequences=2,

)