File size: 394 Bytes
a83f80b
 
d564f5f
 
 
 
 
 
 
 
 
 
 
a83f80b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

README = """
    # Movie Review Score Discriminator
    It is a program that classifies whether it is positive or negative by entering movie reviews.
    You can choose between the Korean version and the English version.
    ## Usage
    
"""

with gr.Blocks() as demo:
    gr.Markdown(README)

gr.Interface.load("models/cardiffnlp/twitter-roberta-base-sentiment").launch()