Skip to content

Instantly share code, notes, and snippets.

View enesozeren's full-sized avatar
🎯
Focusing

Enes Özeren enesozeren

🎯
Focusing
View GitHub Profile
@enesozeren
enesozeren / gpt1_ft_pipeline.py
Last active February 2, 2024 19:04
import gpt1
from transformers import pipeline
gpt = pipeline('text-generation', model='openai-gpt')
prompt = "Once upon a time, there was a mad king"
answer = gpt(prompt, max_length=30)