nickprock commited on
Commit
629a40f
·
1 Parent(s): 1c02cd3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -15
app.py CHANGED
@@ -1,19 +1,19 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
- pipeline = pipeline("text-classification", model="nickprock/distilbert-base-uncased-banking77-classification")
5
 
6
- def predict(text):
7
- predictions = pipeline(text)
8
- return {p["label"]: p["score"] for p in predictions}
9
-
10
- gr.Interface(
11
- predict,
12
- inputs="textbox",
13
- outputs=gr.outputs.Label(num_top_classes=1),
14
- theme="huggingface",
15
- title="Banking Intent Classifier",
16
- description="Try to classify customer queries",
17
- examples=[["I can't pay by my credit card"],["The amount on the transfer is wrong can I cancel it?"]],
18
- share=True
19
- ).launch()
 
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
+ pipe = pipeline("text-classification", model="nickprock/distilbert-base-uncased-banking77-classification")
5
 
6
+ def greet(text):
7
+ response = pipe(text)
8
+ return response[0]['label']
9
+
10
+ demo = gr.Interface(fn=greet,
11
+ inputs="text",
12
+ outputs="text",
13
+ theme="huggingface",
14
+ title="Banking Intent Classifier",
15
+ description="Try to classify customer queries",
16
+ examples=[["I can't pay by my credit card"],["The amount on the transfer is wrong can I cancel it?"], "My card still hasn't been delivered "],
17
+ share=True)
18
+
19
+ demo.launch()