File size: 1,088 Bytes
7ae4a93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Hugging Face's logo
Hugging Face
Search models, datasets, users...
Models
Datasets
Spaces
Docs
Solutions
Pricing



Spaces:

mshook
/
gpt2-story-generator-example Copied
private

Logs
App
Files
Community
Settings
gpt2-story-generator-example
/
app.py
mshook's picture
mshook
Update app.py
26c39e6
43 minutes ago
raw
history
blame
edit
delete
735 Bytes
import gradio as gr
from transformers import pipeline

#generator = pipeline('text-generation', model='gpt2-xl')
generator = pipeline('text-generation', model='pranavpsv/gpt2-genre-story-generator')

def generate(text):
    result = generator(text, max_length=100, num_return_sequences=1)
    return result[0]["generated_text"]

examples = [
    ["<BOS> <sci_fi> After discovering time travel,"],
    ["<BOS> <superhero> Batman"],
    ["<BOS> <drama> Legolas and Gimli advanced on the orcs, raising their weapons with a harrowing war cry"],
]

demo = gr.Interface(
    fn=generate,
    inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
    outputs=gr.outputs.Textbox(label="Generated Text"),
    examples=examples
)

demo.launch()