Spaces:
Runtime error
Runtime error
BeMerciless
commited on
Commit
•
6a4195a
1
Parent(s):
eade612
Update app.py
Browse files
app.py
CHANGED
@@ -50,11 +50,20 @@ def greet(sent,mode):
|
|
50 |
logits = outputs[0] ## 마지막 노드에서 아무런 Activation Function을 거치지 않은 값을 Logit
|
51 |
logits = logits.detach().cpu()
|
52 |
result = logits.argmax(-1)
|
53 |
-
if
|
54 |
-
result
|
55 |
-
|
56 |
-
|
57 |
-
result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
return result
|
60 |
intput="text"
|
|
|
50 |
logits = outputs[0] ## 마지막 노드에서 아무런 Activation Function을 거치지 않은 값을 Logit
|
51 |
logits = logits.detach().cpu()
|
52 |
result = logits.argmax(-1)
|
53 |
+
if mode=='Malicious_comment':
|
54 |
+
if result == 0:
|
55 |
+
result = sent + ">> 악성글로 판단됩니다. 조심하세요."
|
56 |
+
|
57 |
+
elif result ==1:
|
58 |
+
result= sent + ">> 악의적인 내용이 보이지 않습니다."
|
59 |
+
elif mode=='Economic_article':
|
60 |
+
if result == 0:
|
61 |
+
result = "중립"
|
62 |
+
elif result == 1:
|
63 |
+
result = "긍정"
|
64 |
+
elif result == 2:
|
65 |
+
result = "부정"
|
66 |
+
return result
|
67 |
|
68 |
return result
|
69 |
intput="text"
|