Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,11 +10,11 @@ model_original = ClassificationModel(
|
|
10 |
'xiongjie/face-expression-ja',
|
11 |
use_cuda=True,
|
12 |
args=model_args,
|
13 |
-
num_labels=len(
|
14 |
)
|
15 |
|
16 |
def predict_emoticon(text):
|
17 |
-
return emoji.emojize(":" + model_onnx.predict([text])[0][0] + ":")
|
18 |
|
19 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
20 |
iface.launch()
|
|
|
10 |
'xiongjie/face-expression-ja',
|
11 |
use_cuda=True,
|
12 |
args=model_args,
|
13 |
+
num_labels=len(CLASS_NAMES)
|
14 |
)
|
15 |
|
16 |
def predict_emoticon(text):
|
17 |
+
return emoji.emojize(":" + CLASS_NAMES[model_onnx.predict([text])[0][0]] + ":")
|
18 |
|
19 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
20 |
iface.launch()
|