richardkimsm89 commited on
Commit
ec03c70
·
verified ·
1 Parent(s): 588e0ab

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -0
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()