File size: 729 Bytes
2116269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st

st.set_page_config(
page_title="Sentiment Detection"
)
   
st.title("Sentiment Detection")
    
st.sidebar.success("Select a page above.")

st.header("The Need for Sentiment Detection")
st.text("""
        Spam detection algorithms are used to detect and filter junk and spam emails with a high level of accuracy.
        It is said that around half of all emails are spam, depending on the user. These emails can include scams or viruses intended to cause harm.
        """)

st.header("Data Source")
st.text("""
        Data Source: Preprocessed TREC 2007 Public Corpus Dataset. 
        Link: https://www.kaggle.com/datasets/imdeepmind/preprocessed-trec-2007-public-corpus-dataset
        
        """)