Lord-Raven commited on
Commit
64af10f
·
1 Parent(s): 56b5d66

Messing with return value.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ classifier = pipeline("text-classification", model="SamLowe/roberta-base-go_emot
6
 
7
  def predict(text):
8
  result = classifier(text)
9
- printf(f"{result}")
10
  return result
11
 
12
  demo = gr.Interface(
 
6
 
7
  def predict(text):
8
  result = classifier(text)
9
+ print(f"{result}")
10
  return result
11
 
12
  demo = gr.Interface(