Spaces:
Runtime error
Runtime error
Update comment_analyzer.py
Browse files- comment_analyzer.py +10 -10
comment_analyzer.py
CHANGED
@@ -52,22 +52,22 @@ def take_input(comment):
|
|
52 |
with gr.Blocks() as demo:
|
53 |
gr.Markdown("# AIN311 Project P05 - MOOC Recommendation")
|
54 |
gr.Markdown("## Generating a Rating from User Comment")
|
55 |
-
|
56 |
gr.Markdown("""
|
57 |
##### Thanks for your interest and taking your time.
|
58 |
##### Tell us about your personal experience enrolling in this course. Was it the right match for you?
|
59 |
""")
|
60 |
input_comment = gr.Textbox(placeholder="Write your comment here...", show_label = False)
|
61 |
button = gr.Button("What is the Rating I Have Given? Click me to Learn")
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
|
72 |
button.click(fn=take_input, inputs=input_comment, outputs=[negscore, neuscore, posscore, compscore, rating])
|
73 |
|
|
|
52 |
with gr.Blocks() as demo:
|
53 |
gr.Markdown("# AIN311 Project P05 - MOOC Recommendation")
|
54 |
gr.Markdown("## Generating a Rating from User Comment")
|
55 |
+
with gr.Column():
|
56 |
gr.Markdown("""
|
57 |
##### Thanks for your interest and taking your time.
|
58 |
##### Tell us about your personal experience enrolling in this course. Was it the right match for you?
|
59 |
""")
|
60 |
input_comment = gr.Textbox(placeholder="Write your comment here...", show_label = False)
|
61 |
button = gr.Button("What is the Rating I Have Given? Click me to Learn")
|
62 |
+
with gr.Row():
|
63 |
+
gr.Markdown("#### Generated Rating from Your Comment")
|
64 |
+
rating = gr.Number()
|
65 |
+
with gr.Column():
|
66 |
+
gr.Markdown("#### Sentiment Scores of Your Comment")
|
67 |
+
negscore = gr.Number(label="Negativity Score")
|
68 |
+
neuscore = gr.Number(label="Neutrality Score")
|
69 |
+
posscore = gr.Number(label="Positivity Score")
|
70 |
+
compscore = gr.Number(label="Compound Score")
|
71 |
|
72 |
button.click(fn=take_input, inputs=input_comment, outputs=[negscore, neuscore, posscore, compscore, rating])
|
73 |
|