dnd / app.py
Hobson's picture
Update app.py
ba96eb0
import gradio
description = "Natural language generation with GPT-2"
title = "Give GPT-2 a prompt and it will take it from there..."
model_path = "huggingface/pranavpsv/gpt2-genre-story-generator"
interface = gradio.Interface.load(
model_path,
description=description
)
interface.launch()