File size: 11,936 Bytes
7fb0b17 9b5f6ef 7fb0b17 9b5f6ef 7fb0b17 9b5f6ef 7fb0b17 9b5f6ef 7fb0b17 9b5f6ef | 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | import streamlit as st
import joblib
import json
import re
import nltk
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
from nltk.stem import WordNetLemmatizer
import os
# Download NLTK resources
try:
nltk.download('punkt')
nltk.download('stopwords')
nltk.download('wordnet')
except:
pass
class SentimentAnalyzer:
def __init__(self, model_dir="saved_models"):
try:
# Load models
self.vectorizer = joblib.load(f"{model_dir}/tfidf_vectorizer.pkl")
self.lr_model = joblib.load(f"{model_dir}/logistic_regression_model.pkl")
self.nb_model = joblib.load(f"{model_dir}/naive_bayes_model.pkl")
# Load metadata
with open(f"{model_dir}/model_metadata.json", 'r') as f:
self.metadata = json.load(f)
self.models_loaded = True
except Exception as e:
st.error(f"Error loading models: {e}")
self.models_loaded = False
def preprocess_text(self, text):
# Lowercase
text = text.lower()
# Remove special characters and digits
text = re.sub(r'[^a-zA-Z\s]', '', text)
# Tokenize
tokens = word_tokenize(text)
# Remove stopwords
stop_words = set(stopwords.words('english'))
tokens = [word for word in tokens if word not in stop_words]
# Lemmatize
lemmatizer = WordNetLemmatizer()
tokens = [lemmatizer.lemmatize(word) for word in tokens]
# Join tokens back to string
return ' '.join(tokens)
def predict(self, text, model_type='both'):
if not self.models_loaded:
return None
# Preprocess text
cleaned_text = self.preprocess_text(text)
# Vectorize
text_vector = self.vectorizer.transform([cleaned_text])
results = {}
if model_type in ['lr', 'both']:
lr_pred = self.lr_model.predict(text_vector)[0]
lr_prob = self.lr_model.predict_proba(text_vector)[0]
results['logistic_regression'] = {
'prediction': 'positive' if lr_pred == 1 else 'negative',
'confidence': float(max(lr_prob)),
'probabilities': {
'negative': float(lr_prob[0]),
'positive': float(lr_prob[1])
}
}
if model_type in ['nb', 'both']:
nb_pred = self.nb_model.predict(text_vector)[0]
nb_prob = self.nb_model.predict_proba(text_vector)[0]
results['naive_bayes'] = {
'prediction': 'positive' if nb_pred == 1 else 'negative',
'confidence': float(max(nb_prob)),
'probabilities': {
'negative': float(nb_prob[0]),
'positive': float(nb_prob[1])
}
}
return results
def main():
st.set_page_config(
page_title="IMDb Sentiment Analysis",
page_icon="π¬",
layout="wide"
)
st.title("π¬ IMDb Review Sentiment Analysis")
st.markdown("---")
# Check if models exist
if not os.path.exists("saved_models"):
st.error("β Models not found! Please run `python train_and_save_model.py` first to train and save the models.")
st.info("This will create the 'saved_models' directory with your trained models.")
return
# Initialize analyzer
with st.spinner("Loading models..."):
analyzer = SentimentAnalyzer()
if not analyzer.models_loaded:
st.error("Failed to load models. Please check if the model files exist in the 'saved_models' directory.")
return
# Display model info
st.success("β
Models loaded successfully!")
# Model performance metrics
col1, col2 = st.columns(2)
with col1:
st.metric("Logistic Regression Accuracy", f"{analyzer.metadata['lr_accuracy']:.2%}")
with col2:
st.metric("Naive Bayes Accuracy", f"{analyzer.metadata['nb_accuracy']:.2%}")
st.markdown("---")
# Input section
st.subheader("π Enter a Movie Review")
# Text input
user_input = st.text_area(
"Write your movie review here:",
height=150,
placeholder="Example: This movie was absolutely fantastic! The acting was superb and the plot was engaging..."
)
# Model selection
model_choice = st.selectbox(
"Choose model for prediction:",
["Both Models", "Logistic Regression Only", "Naive Bayes Only"],
help="Select which model(s) to use for prediction"
)
# Prediction button
if st.button("π Analyze Sentiment", type="primary"):
if user_input.strip():
with st.spinner("Analyzing sentiment..."):
# Map model choice to parameter
model_type = 'both'
if model_choice == "Logistic Regression Only":
model_type = 'lr'
elif model_choice == "Naive Bayes Only":
model_type = 'nb'
# Get predictions
results = analyzer.predict(user_input, model_type)
if results:
st.markdown("---")
st.subheader("π Analysis Results")
# Display results
if model_type == 'both' or model_choice == "Both Models":
col1, col2 = st.columns(2)
with col1:
st.subheader("π€ Logistic Regression")
lr_result = results['logistic_regression']
if lr_result['prediction'] == 'positive':
st.success(f"β
Positive Sentiment")
else:
st.error(f"β Negative Sentiment")
st.metric("Confidence", f"{lr_result['confidence']:.2%}")
# Progress bar for probabilities
st.write("**Probabilities:**")
st.progress(lr_result['probabilities']['positive'])
st.write(f"Positive: {lr_result['probabilities']['positive']:.2%}")
st.progress(lr_result['probabilities']['negative'])
st.write(f"Negative: {lr_result['probabilities']['negative']:.2%}")
with col2:
st.subheader("π§ Naive Bayes")
nb_result = results['naive_bayes']
if nb_result['prediction'] == 'positive':
st.success(f"β
Positive Sentiment")
else:
st.error(f"β Negative Sentiment")
st.metric("Confidence", f"{nb_result['confidence']:.2%}")
# Progress bar for probabilities
st.write("**Probabilities:**")
st.progress(nb_result['probabilities']['positive'])
st.write(f"Positive: {nb_result['probabilities']['positive']:.2%}")
st.progress(nb_result['probabilities']['negative'])
st.write(f"Negative: {nb_result['probabilities']['negative']:.2%}")
else:
# Single model result
model_name = "Logistic Regression" if model_type == 'lr' else "Naive Bayes"
result = results['logistic_regression'] if model_type == 'lr' else results['naive_bayes']
st.subheader(f"π€ {model_name}")
if result['prediction'] == 'positive':
st.success(f"β
Positive Sentiment")
else:
st.error(f"β Negative Sentiment")
st.metric("Confidence", f"{result['confidence']:.2%}")
# Progress bar for probabilities
st.write("**Probabilities:**")
st.progress(result['probabilities']['positive'])
st.write(f"Positive: {result['probabilities']['positive']:.2%}")
st.progress(result['probabilities']['negative'])
st.write(f"Negative: {result['probabilities']['negative']:.2%}")
# Model comparison
if model_type == 'both':
st.markdown("---")
st.subheader("π Model Comparison")
# Create comparison chart
import plotly.graph_objects as go
models = list(results.keys())
confidences = [results[model]['confidence'] for model in models]
predictions = [results[model]['prediction'] for model in models]
fig = go.Figure(data=[
go.Bar(
x=models,
y=confidences,
text=[f"{conf:.2%}" for conf in confidences],
textposition='auto',
marker_color=['green' if pred == 'positive' else 'red' for pred in predictions]
)
])
fig.update_layout(
title="Model Confidence Comparison",
xaxis_title="Model",
yaxis_title="Confidence",
yaxis_range=[0, 1]
)
st.plotly_chart(fig, use_container_width=True)
else:
st.error("Failed to get predictions. Please try again.")
else:
st.warning("β οΈ Please enter a review to analyze.")
# Sidebar with additional info
with st.sidebar:
st.header("βΉοΈ About")
st.write("This app uses machine learning models to analyze the sentiment of movie reviews.")
st.write("**Models:**")
st.write("- Logistic Regression")
st.write("- Naive Bayes")
st.header("π Model Details")
st.write(f"**Training Samples:** {analyzer.metadata['training_samples']:,}")
st.write(f"**Test Samples:** {analyzer.metadata['test_samples']:,}")
st.write(f"**Features:** {analyzer.metadata['max_features']:,}")
st.header("π§ Preprocessing Steps")
for step in analyzer.metadata['preprocessing_steps']:
st.write(f"- {step.replace('_', ' ').title()}")
st.header("π Sample Reviews")
sample_reviews = [
"This movie was absolutely fantastic! I loved every minute of it.",
"Terrible film, waste of time. Don't watch it.",
"It was okay, nothing special but not bad either.",
"Amazing performance by the actors, great storyline!",
"Boring and predictable plot, poor acting."
]
for i, review in enumerate(sample_reviews, 1):
if st.button(f"Sample {i}", key=f"sample_{i}"):
st.session_state.user_input = review
st.rerun()
if __name__ == "__main__":
main() |