File size: 462 Bytes
33bb21e 8f5ccaf 33bb21e b96ee62 a07f98e 8f5ccaf 33bb21e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
description = "Story generation with GPT-2"
title = "Generate your own story"
examples = [["US Aircraft Carrier goes through a wormhole and finds itself in the Pacific Ocean on December 6, 1941"], ["Construction worker digs up what appears to be his own future grave."]]
interface = gr.load("pranavpsv/gpt2-genre-story-generator",
src="models",
title=description,
examples=examples
)
interface.launch() |