File size: 221 Bytes
300b3c9
 
8a35571
300b3c9
8a35571
03e442a
8a35571
fc084fd
8a35571
 
1
2
3
4
5
6
7
8
9
10
from transformers import pipeline

generator = pipeline("text-generation", model="distilgpt2")

res = generator(
    "In this course we will teach you how to",
    max_length = 30,
    num_return_sequence = 2
)
print(res)