aalkaswan commited on
Commit
c635ea8
Β·
1 Parent(s): 2765893

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -1,7 +1,16 @@
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()
 
1
  import gradio as gr
2
+ from setfit import SetFitModel
3
+
4
 
5
  def greet(name):
6
  return "Hello " + name + "!!"
7
 
8
+ model = SetFitModel.from_pretrained("aalkaswan/java-deprecation-classifier",
9
+ device='cpu', #Use this if you don't have a GPU
10
+ )
11
+
12
+ def classify(text):
13
+ return model(text)
14
+
15
+ iface = gr.Interface(fn=classify, inputs="text", outputs="text")
16
  iface.launch()