rachman commited on
Commit
bd0ff05
·
verified ·
1 Parent(s): 50fb587

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +85 -38
src/streamlit_app.py CHANGED
@@ -1,40 +1,87 @@
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
+ import tensorflow_hub as tf_hub
6
+ from nltk.corpus import stopwords
7
+ from nltk.tokenize import word_tokenize
8
+ from tensorflow.keras.preprocessing.text import Tokenizer
9
+ from tensorflow.keras.preprocessing.sequence import pad_sequences
10
+ from tensorflow.keras.models import load_model
11
+ import nltk
12
+
13
+ # Use /tmp for NLTK data (writable in Hugging Face Spaces)
14
+ nltk_data_dir = "/tmp/nltk_data"
15
+ nltk.data.path.append(nltk_data_dir)
16
+
17
+ # Download the stopwords and punkt resources
18
+ nltk.download('stopwords', download_dir=nltk_data_dir)
19
+ nltk.download('punkt_tab', download_dir=nltk_data_dir)
20
+
21
+ # Load the trained model
22
+ model = tf.keras.models.load_model('model_final.keras',
23
+ custom_objects={'KerasLayer': tf_hub.KerasLayer})
24
+ # Load stopwords
25
+ # Define Stopwords
26
+ stpwds_id = list(set(stopwords.words('indonesian')))
27
+ stpwds_id.append('oh')
28
+
29
+ # Define Stemming
30
+ stemmer = StemmerFactory().create_stemmer()
31
+
32
+ # Create A Function for Text Preprocessing
33
+
34
+ def text_preprocessing(text):
35
+ # Case folding
36
+ text = text.lower()
37
+
38
+ # Mention removal
39
+ text = re.sub("@[A-Za-z0-9_]+", " ", text)
40
+
41
+ # Hashtags removal
42
+ text = re.sub("#[A-Za-z0-9_]+", " ", text)
43
+
44
+ # Newline removal (\n)
45
+ text = re.sub(r"\\n", " ",text)
46
+
47
+ # Whitespace removal
48
+ text = text.strip()
49
+
50
+ # URL removal
51
+ text = re.sub(r"http\S+", " ", text)
52
+ text = re.sub(r"www.\S+", " ", text)
53
+
54
+ # Non-letter removal (such as emoticon, symbol (like μ, $, 兀), etc
55
+ text = re.sub("[^A-Za-z\s']", " ", text)
56
+
57
+ # Tokenization
58
+ tokens = word_tokenize(text)
59
+
60
+ # Stopwords removal
61
+ tokens = [word for word in tokens if word not in stpwds_id]
62
+
63
+ # Stemming
64
+ tokens = [stemmer.stem(word) for word in tokens]
65
+
66
+ # Combining Tokens
67
+ text = ' '.join(tokens)
68
+
69
+ return text
70
+
71
+ # Define the Streamlit interface
72
+ st.title('Sentiment Analysis App')
73
+
74
+ # Get user input
75
+ user_input = st.text_area("Enter the text for sentiment analysis:")
76
+
77
+ if st.button('Analyze'):
78
+ if user_input:
79
+ # Preprocess the input text
80
+ processed_text = text_preprocessing(user_input)
81
+ prediction = model.predict([[processed_text]])
82
+ sentiment = "Positive" if prediction[0] > 0.5 else "Negative"
83
 
84
+ # Display the result
85
+ st.write(f"Sentiment: {sentiment}")
86
+ else:
87
+ st.write("Please enter some text.")