Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,16 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|