Lord-Raven
commited on
Commit
·
64af10f
1
Parent(s):
56b5d66
Messing with return value.
Browse files
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 |
-
|
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(
|