rachman commited on
Commit
d6a09f2
·
verified ·
1 Parent(s): 61667fb

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +72 -38
src/streamlit_app.py CHANGED
@@ -1,40 +1,74 @@
1
- import altair as alt
2
- import numpy as np
3
- import pandas as pd
4
  import streamlit as st
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
- """
7
- # Welcome to Streamlit!
8
-
9
- Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
10
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
11
- forums](https://discuss.streamlit.io).
12
-
13
- In the meantime, below is an example of what you can do with just a few lines of code:
14
- """
15
-
16
- num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
17
- num_turns = st.slider("Number of turns in spiral", 1, 300, 31)
18
-
19
- indices = np.linspace(0, 1, num_points)
20
- theta = 2 * np.pi * num_turns * indices
21
- radius = indices
22
-
23
- x = radius * np.cos(theta)
24
- y = radius * np.sin(theta)
25
-
26
- df = pd.DataFrame({
27
- "x": x,
28
- "y": y,
29
- "idx": indices,
30
- "rand": np.random.randn(num_points),
31
- })
32
-
33
- st.altair_chart(alt.Chart(df, height=700, width=700)
34
- .mark_point(filled=True)
35
- .encode(
36
- x=alt.X("x", axis=None),
37
- y=alt.Y("y", axis=None),
38
- color=alt.Color("idx", legend=None, scale=alt.Scale()),
39
- size=alt.Size("rand", legend=None, scale=alt.Scale(range=[1, 150])),
40
- ))
 
 
 
 
1
  import streamlit as st
2
+ import pandas as pd
3
+ import re
4
+ import tensorflow as tf
5
+ from nltk.corpus import stopwords
6
+ from nltk.tokenize import word_tokenize
7
+ from tensorflow.keras.preprocessing.text import Tokenizer
8
+ from tensorflow.keras.preprocessing.sequence import pad_sequences
9
+ from tensorflow.keras.models import load_model
10
+ import nltk
11
+
12
+ # Download the stopwords resource
13
+ nltk.download('stopwords')
14
+ nltk.download('punkt')
15
+
16
+ # Load the trained model
17
+ model = load_model('model.keras')
18
+
19
+ # Load stopwords
20
+ stpwds_id = list(set(stopwords.words('english')))
21
+
22
+ # Text preprocessing function
23
+ def text_preprocessing(text):
24
+ # Case folding
25
+ text = text.lower()
26
+
27
+ # Mention removal
28
+ text = re.sub("@[A-Za-z0-9_]+", " ", text)
29
+
30
+ # Hashtags removal
31
+ text = re.sub("#[A-Za-z0-9_]+", " ", text)
32
+
33
+ # Newline removal (\n)
34
+ text = re.sub(r"\\n", " ",text)
35
+
36
+ # Whitespace removal
37
+ text = text.strip()
38
+
39
+ # URL removal
40
+ text = re.sub(r"http\S+", " ", text)
41
+ text = re.sub(r"www.\S+", " ", text)
42
+
43
+ # Non-letter removal (such as emoticons, symbols, etc.)
44
+ text = re.sub("[^A-Za-z\s']", " ", text)
45
+
46
+ # Tokenization
47
+ tokens = word_tokenize(text)
48
+
49
+ # Stopwords removal
50
+ tokens = [word for word in tokens if word not in stpwds_id]
51
+
52
+ # Combining Tokens
53
+ text = ' '.join(tokens)
54
+
55
+ return text
56
+
57
+ # Define the Streamlit interface
58
+ st.title('Sentiment Analysis App')
59
+
60
+ # Get user input
61
+ user_input = st.text_area("Enter the text for sentiment analysis:")
62
+
63
+ if st.button('Analyze'):
64
+ if user_input:
65
+ # Preprocess the input text
66
+ processed_text = text_preprocessing(user_input)
67
+ prediction = model.predict([[processed_text]])
68
+ sentiment = "Positive" if prediction[0] > 0.5 else "Negative"
69
+
70
+ # Display the result
71
+ st.write(f"Sentiment: {sentiment}")
72
+ else:
73
+ st.write("Please enter some text.")
74