File size: 1,389 Bytes
b64accf |
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 37 38 39 40 41 42 43 44 |
import streamlit as st
from st_pages import Page, show_pages
st.set_page_config(page_title="Sentiment Analysis", page_icon="🏠")
show_pages(
[
Page("streamlit_app.py/Homepage.py", "Home", "🏠"),
Page(
"streamlit_app.py/pages/Sentiment_Analysis.py", "Sentiment Analysis", "📝"
),
]
)
st.title("Seminar Công nghệ Tri thức - Transformer trong NLP")
st.markdown(
"""
**Team members:**
| Student ID | Full Name |
| ---------- | ------------------------ |
| 19120600 | Bùi Nguyên Nghĩa |
| 19120607 | Phạm Thị Nguyệt |
"""
)
st.header("The Need for Sentiment Analysis")
st.markdown(
"""
Sentiment analysis algorithms are used to detect sentiment in a comment or a review.
It is said that around 90% of consumers read online reviews before visiting a business or buying a product.
These reviews can be positive or negative or neutral, and it is important to know what the customers are saying about your business.
"""
)
st.header("Technology used")
st.markdown(
"""
In this demo, we used BERT as the model for sentiment analysis. BERT is a transformer-based model that was proposed in 2018 by Google.
It is a pre-trained model that can be used for various NLP tasks such as sentiment analysis, question answering, etc.
"""
)
|