Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
def infer(input_text):
|
5 |
+
out = pipeline("text-generation", model="gpt2")
|
6 |
+
output_text = out(input_text, max_length=30, num_return_sequences=1)
|
7 |
+
return output_text[0]['generated_text']
|
8 |
+
|
9 |
+
demo = gr.Interface(
|
10 |
+
fn=infer,
|
11 |
+
inputs=["text"],
|
12 |
+
outputs=["text"],
|
13 |
+
)
|
14 |
+
|
15 |
+
demo.launch()
|