mdj1412 commited on
Commit
d564f5f
1 Parent(s): a83f80b

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -1,3 +1,14 @@
1
  import gradio as gr
2
 
 
 
 
 
 
 
 
 
 
 
 
3
  gr.Interface.load("models/cardiffnlp/twitter-roberta-base-sentiment").launch()
 
1
  import gradio as gr
2
 
3
+ README = """
4
+ # Movie Review Score Discriminator
5
+ It is a program that classifies whether it is positive or negative by entering movie reviews.
6
+ You can choose between the Korean version and the English version.
7
+ ## Usage
8
+
9
+ """
10
+
11
+ with gr.Blocks() as demo:
12
+ gr.Markdown(README)
13
+
14
  gr.Interface.load("models/cardiffnlp/twitter-roberta-base-sentiment").launch()