royyy commited on
Commit
e19d30d
1 Parent(s): 89f7b5e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -7
app.py CHANGED
@@ -1,11 +1,15 @@
1
  import gradio as gr
2
- from gradio.mix import Parallel
3
 
4
- myfirstvariable="My First Text Generator"
5
- mylovelysecondvariablevariable="Input text and submit."
 
 
 
6
 
7
- model1=gr.Interface.load("huggingface/gpt2")
8
- model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
9
- model3=gr.Interface.load("huggingface/bigscience/bloom-560m")
10
 
11
- gr,Parallel(model1, model2,model3title=myfirstvariable, description=mylovelysecondvariablevariable).launch()
 
 
1
  import gradio as gr
2
+ from transformers import pipeline
3
 
4
+ generator = pipeline('text-generation', model='EleutherAI/gpt-neo-1.3B')
5
+ examples = [
6
+ ["Once upon a time, Dr. Woo was teaching computer programming in a school."],
7
+ ["Once upon a time, Dr. Woo was walking in a park. He "]
8
+ ]
9
 
10
+ def generate(text):
11
+ result=generator(text, max_length=100, num_return_sequences=3)
12
+ return result[0]['generated_text']
13
 
14
+ gr.Interface(fn=generate, inputs=gr.inputs.Textbox(lines=5, label='input text'), outputs=gr.outputs.Textbox(label='output text'), title='My First Text Generator', examples=examples).launch()
15
+ )