Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
-
from
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
gr,
|
|
|
|
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 |
+
)
|