enio commited on
Commit
62c9b7f
1 Parent(s): a4141e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -13
app.py CHANGED
@@ -1,17 +1,7 @@
1
  import gradio as gr
2
 
3
- from transformers import pipeline
4
-
5
- pipe = pipeline("sentiment", model="enio/Sentiment_BERT")
6
-
7
- def predict(text):
8
- return pipe(text)[0]["sentiment_text"]
9
-
10
- iface = gr.Interface(
11
- fn=predict,
12
- inputs='text',
13
- outputs='text',
14
- examples=[["This is Awesome!"]]
15
- )
16
 
 
17
  iface.launch()
 
1
  import gradio as gr
2
 
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
 
 
 
 
 
 
 
 
 
 
 
5
 
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()