xiongjie commited on
Commit
b541280
·
1 Parent(s): c5ea502

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(emoticon_dataset.CLASS_NAMES)
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()