harishchaurasia/gpt2-lyrics-model-fine-tuned
120
๐ต GPT2 Lyrics Fine-Tuned Model
This is a GPT2 model fine-tuned on 400k English song lyrics to generate creative lyric-style text.
๐ฅ Example Usage
from transformers import pipeline
pipe = pipeline("text-generation", model="harishchaurasia/gpt2-lyrics-model-fine-tuned")
print(pipe("I feel the music", max_new_tokens=50))
