Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
pipeline = pipeline(model = "google/gemma-2b-it")
|
5 |
+
|
6 |
+
def inference(input):
|
7 |
+
output = pipeline(input)
|
8 |
+
return output[0]['generated_text']
|
9 |
+
|
10 |
+
app = gr.Interface(
|
11 |
+
fn = inference,
|
12 |
+
inputs = [gr.Textbox(label = "Input")],
|
13 |
+
outputs = [gr.Textbox(label = "Output")],
|
14 |
+
title = "Demo",
|
15 |
+
examples = [
|
16 |
+
["Hello, Gemma."]
|
17 |
+
]
|
18 |
+
)
|
19 |
+
|
20 |
+
app.launch()
|