File size: 777 Bytes
8fe0112
 
 
 
 
 
 
 
04b542d
c3fad0b
04b542d
8fe0112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
04b542d
 
8fe0112
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import gradio as gr
from keras.models import load_model
import pickle
import torch
import numpy as np
import pandas as pd
from utils import test_sentences


model = torch.load('bert_classification(0.87).pt')


# Gradio ์ธํ„ฐํŽ˜์ด์Šค์—์„œ ์‚ฌ์šฉํ•  ํ•จ์ˆ˜ ์ •์˜
def predict_sentiment(text):
  logit = test_sentences([text], model)
  sent = np.argmax(logit)

  classes = {0: "์ค‘๋ฆฝ", 1:"๊ธ์ •", 2:"๋ถ€์ •"}
  sentiment = classes[sent]

  return sentiment

title = "๐Ÿคทโ€โ™€๏ธ๐Ÿคทโ€โ™‚๏ธWhat is the EMOTION of TWEETโ”"
description = "โ–ถํŠธ์œ„ํ„ฐ ๊ฐ์ • ์•Œ์•„๋ณด๊ธฐ"


tweet = gr.Interface(
    fn=predict_sentiment,
    inputs="text",
    outputs="text",
    title=title,
    theme="finlaymacklon/boxy_violet",
    description=description
)
tweet.launch(share=True)