File size: 17,690 Bytes
4c354eb 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 2a331bc 4c354eb 2a331bc 4c354eb 39e26ba 2a331bc 39e26ba 4c354eb 39e26ba 2a331bc 4c354eb 39e26ba 4c354eb 39e26ba 2a331bc 39e26ba 2a331bc 4c354eb 39e26ba 2a331bc 4c354eb 39e26ba 4c354eb 2a331bc 39e26ba 2a331bc 4c354eb 2a331bc 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 2a331bc 39e26ba 4c354eb 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 4c354eb 39e26ba 4c354eb 2a331bc 39e26ba 4c354eb 39e26ba 2a331bc 39e26ba 4c354eb 2a331bc 39e26ba 4c354eb 39e26ba 4c354eb 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 4c354eb 2a331bc 4c354eb 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc 39e26ba 2a331bc |
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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
import streamlit as st
import pandas as pd
import numpy as np
from transformers import pipeline
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
import plotly.express as px
from wordcloud import WordCloud
import matplotlib.pyplot as plt
from collections import Counter
import re
from datetime import datetime
import time
# Page Config
st.set_page_config(page_title="Sentiment Analytics Pro", page_icon="📊", layout="wide")
# Custom Styles
st.markdown("""
<style>
.metric-box {
background-color: #f0f2f6;
border-left: 5px solid #4B4B4B;
padding: 20px;
border-radius: 10px;
margin-bottom: 10px;
}
.stTextArea textarea {
font-size: 16px;
}
</style>
""", unsafe_allow_html=True)
# ------------------------------------------------------------------
# CACHED MODEL LOADING
# ------------------------------------------------------------------
@st.cache_resource
def load_models():
try:
st.info("🔄 Loading AI models... This may take a few minutes on first run.")
# English Models (Ensemble)
roberta = pipeline(
"sentiment-analysis",
model="cardiffnlp/twitter-roberta-base-sentiment-latest",
tokenizer="cardiffnlp/twitter-roberta-base-sentiment-latest"
)
distilbert = pipeline(
"sentiment-analysis",
model="distilbert-base-uncased-finetuned-sst-2-english"
)
vader = SentimentIntensityAnalyzer()
# Use a more stable multilingual model
multilingual = pipeline(
"sentiment-analysis",
model="nlptown/bert-base-multilingual-uncased-sentiment"
)
st.success("✅ All models loaded successfully!")
return roberta, distilbert, vader, multilingual
except Exception as e:
st.error(f"❌ Error loading models: {str(e)}")
# Return fallback models
try:
vader = SentimentIntensityAnalyzer()
distilbert = pipeline("sentiment-analysis")
return None, distilbert, vader, None
except:
return None, None, SentimentIntensityAnalyzer(), None
# Load models with progress indication
with st.spinner("Initializing AI models..."):
roberta_model, distilbert_model, vader_model, multi_model = load_models()
# Check if essential models loaded
if vader_model is None:
st.error("❌ Critical error: Failed to load essential models. Please refresh the page.")
st.stop()
# ------------------------------------------------------------------
# HELPER FUNCTIONS
# ------------------------------------------------------------------
def clean_text(text):
text = text.lower()
text = re.sub(r'http\S+', '', text) # Remove URLs
text = re.sub(r'[^\w\s]', '', text) # Remove punctuation
return text
def get_wordcloud(text):
try:
wc = WordCloud(
width=800,
height=400,
background_color='white',
max_words=100,
colormap='viridis'
).generate(text)
fig, ax = plt.subplots(figsize=(10, 5))
ax.imshow(wc, interpolation='bilinear')
ax.axis('off')
return fig
except Exception as e:
st.error(f"WordCloud error: {e}")
return None
# ------------------------------------------------------------------
# CORE ANALYSIS LOGIC
# ------------------------------------------------------------------
def analyze_english(text):
try:
# Ensure text is not empty
if not text.strip():
return {
'verdict': 'neutral',
'confidence': 'Low (No text)',
'breakdown': {'Error': 'No text provided'},
'scores': {'Error': 0.0}
}
results = {}
# 1. RoBERTa (if available)
if roberta_model is not None:
try:
rob_out = roberta_model(text[:512])[0]
rob_label = rob_out['label']
if rob_label == 'LABEL_0':
rob_sent = 'negative'
elif rob_label == 'LABEL_1':
rob_sent = 'neutral'
else:
rob_sent = 'positive'
results['roberta'] = (rob_sent, rob_out['score'])
except Exception as e:
st.warning(f"RoBERTa model unavailable: {e}")
# 2. VADER (always available)
vader_out = vader_model.polarity_scores(text)
compound = vader_out['compound']
if compound >= 0.05:
vader_sent = 'positive'
elif compound <= -0.05:
vader_sent = 'negative'
else:
vader_sent = 'neutral'
results['vader'] = (vader_sent, abs(compound))
# 3. DistilBERT (if available)
if distilbert_model is not None:
try:
bert_out = distilbert_model(text[:512])[0]
bert_sent = bert_out['label'].lower()
results['distilbert'] = (bert_sent, bert_out['score'])
except Exception as e:
st.warning(f"DistilBERT model unavailable: {e}")
# If only VADER is available
if len(results) == 1 and 'vader' in results:
return {
'verdict': vader_sent,
'confidence': 'Medium (VADER only)',
'breakdown': {'VADER': vader_sent},
'scores': {'VADER': abs(compound)}
}
# Consensus Logic (Voting)
votes = [sent for sent, score in results.values()]
count = Counter(votes)
winner, vote_count = count.most_common(1)[0]
# Conflict Detection
if len(count) == len(results) or vote_count == 1:
final_verdict = "ambiguous"
confidence = f"Low ({vote_count}/{len(results)} agreement)"
else:
final_verdict = winner
confidence = "High" if vote_count == len(results) else "Medium"
return {
'verdict': final_verdict,
'confidence': confidence,
'breakdown': {model: sent for model, (sent, score) in results.items()},
'scores': {model: score for model, (sent, score) in results.items()}
}
except Exception as e:
st.error(f"Analysis error: {e}")
return None
def analyze_multilingual(text):
try:
if not text.strip():
return {
'verdict': 'neutral',
'confidence': 'Low (No text)',
'breakdown': {'Error': 'No text provided'},
'scores': {'Error': 0.0}
}
# Use multilingual model if available, otherwise fallback to English analysis
if multi_model is not None:
result = multi_model(text[:512])[0]
label_raw = str(result['label'])
score = result['score']
# Map star ratings to sentiment (nlptown model uses 1-5 stars)
if '1' in label_raw or '2' in label_raw:
sentiment = "negative"
elif '3' in label_raw:
sentiment = "neutral"
else: # 4 or 5 stars
sentiment = "positive"
return {
'verdict': sentiment,
'confidence': f"{score:.2f}",
'breakdown': {'Multilingual BERT': f"{sentiment.title()} ({score:.2f})"},
'scores': {'Model Confidence': score}
}
else:
# Fallback to English analysis
st.info("🌐 Multilingual model unavailable, using English analysis...")
return analyze_english(text)
except Exception as e:
st.error(f"Multilingual analysis error: {e}")
# Fallback to English analysis
return analyze_english(text)
# ------------------------------------------------------------------
# UI LAYOUT
# ------------------------------------------------------------------
# Sidebar
st.sidebar.title("⚙️ Configuration")
language = st.sidebar.selectbox("Select Language", ["English", "Hindi (हिन्दी)", "Hinglish (Mixed)"])
mode = st.sidebar.selectbox("Analysis Mode", ["Real-time Analysis", "Batch Processing"])
st.sidebar.markdown("---")
st.sidebar.info("""
**Model Status:**
- ✅ VADER: Available
- 🤖 RoBERTa: {'✅' if roberta_model else '❌'}
- 🚀 DistilBERT: {'✅' if distilbert_model else '❌'}
- 🌐 Multilingual: {'✅' if multi_model else '❌'}
""")
st.title("🧠 Sentiment Analytics Pro")
st.markdown("Advanced AI-powered sentiment analysis across multiple languages")
st.markdown("---")
if mode == "Real-time Analysis":
# Dynamic Input Box
if language == "Hindi (हिन्दी)":
placeholder_text = "यहाँ अपना टेक्स्ट लिखें (उदा. मुझे यह उत्पाद पसंद आया)"
label_text = "Enter Hindi Text:"
elif language == "Hinglish (Mixed)":
placeholder_text = "Type in Hinglish (e.g., Product bahut achha hai but delivery slow thi)"
label_text = "Enter Hinglish Text:"
else:
placeholder_text = "Type your text here... (e.g., I love this product! Amazing quality.)"
label_text = "Enter English Text:"
user_input = st.text_area(label_text, height=150, placeholder=placeholder_text)
if st.button("🚀 Analyze Sentiment", type="primary", use_container_width=True):
if not user_input.strip():
st.warning("⚠️ Please enter some text first.")
else:
with st.spinner("🔮 Analyzing sentiment with AI models..."):
start_time = time.time()
# Routing Logic
if language == "English":
result = analyze_english(user_input)
else:
result = analyze_multilingual(user_input)
if result is None:
st.error("❌ Analysis failed. Please try again with different text.")
st.stop()
latency = time.time() - start_time
# 1. Main Verdict Display
st.markdown("### 📊 Analysis Results")
col1, col2, col3 = st.columns(3)
color_map = {
'positive': '#10B981',
'negative': '#EF4444',
'neutral': '#F59E0B',
'ambiguous': '#6B7280'
}
verdict_color = color_map.get(result['verdict'], '#3B82F6')
with col1:
st.markdown(f"""
<div class="metric-box">
<h2 style='color: {verdict_color}; margin:0;'>{result['verdict'].upper()}</h2>
<p style='margin:0;'>Final Verdict</p>
</div>
""", unsafe_allow_html=True)
with col2:
st.markdown(f"""
<div class="metric-box">
<h2>{result['confidence']}</h2>
<p style='margin:0;'>Confidence Level</p>
</div>
""", unsafe_allow_html=True)
with col3:
st.markdown(f"""
<div class="metric-box">
<h2>{latency:.3f}s</h2>
<p style='margin:0;'>Processing Time</p>
</div>
""", unsafe_allow_html=True)
# 2. Detailed Breakdown
st.markdown("---")
c1, c2 = st.columns([1, 1])
with c1:
st.subheader("🔍 Model Consensus")
if language == "English" and len(result['breakdown']) > 1:
df_breakdown = pd.DataFrame(
list(result['breakdown'].items()),
columns=['Model', 'Prediction']
)
st.table(df_breakdown)
if result['verdict'] == 'ambiguous':
st.error("⚠️ Conflict Detected: Models disagree. Human review recommended.")
else:
for model, prediction in result['breakdown'].items():
st.info(f"**{model}**: {prediction}")
with c2:
st.subheader("📈 Confidence Scores")
if result['scores']:
df_scores = pd.DataFrame(
list(result['scores'].items()),
columns=['Source', 'Score']
)
fig = px.bar(
df_scores,
x='Source',
y='Score',
range_y=[0,1],
color='Score',
color_continuous_scale='Blues'
)
fig.update_layout(showlegend=False)
st.plotly_chart(fig, use_container_width=True)
# 3. Word Cloud
if len(user_input) > 10:
st.subheader("☁️ Contextual Word Cloud")
try:
cleaned = clean_text(user_input)
if len(cleaned.split()) >= 3: # Only generate if enough words
fig_wc = get_wordcloud(cleaned)
if fig_wc:
st.pyplot(fig_wc)
else:
st.info("📝 Word cloud not available for this text.")
else:
st.info("📝 Add more text for word cloud visualization.")
except Exception as e:
st.info("📝 Word cloud not available for this text type.")
# 4. Human Feedback Loop
st.markdown("---")
with st.expander("📝 Help Improve Accuracy (Report Incorrect Results)"):
st.write("Your feedback helps train better AI models!")
feedback = st.radio("What should the correct sentiment be?",
["Positive", "Negative", "Neutral"],
horizontal=True)
if st.button("Submit Correction"):
st.success("""
✅ Thank you! Your feedback has been recorded.
This helps improve the AI model for everyone.
""")
elif mode == "Batch Processing":
st.info("📁 Upload a CSV file with a 'text' column for batch analysis")
uploaded_file = st.file_uploader("Choose CSV file", type=['csv'])
if uploaded_file is not None:
try:
df = pd.read_csv(uploaded_file)
if 'text' not in df.columns:
st.error("❌ CSV file must contain a column named 'text'")
else:
st.success(f"✅ Loaded {len(df)} records")
if st.button("🔮 Process Batch Analysis", type="primary", use_container_width=True):
results = []
progress_bar = st.progress(0)
status_text = st.empty()
for i, row in df.iterrows():
status_text.text(f"Processing {i+1}/{len(df)}...")
txt = str(row['text'])
if language == "English":
res = analyze_english(txt)
else:
res = analyze_multilingual(txt)
if res:
results.append(res['verdict'])
else:
results.append('analysis_error')
progress_bar.progress((i + 1) / len(df))
status_text.text("✅ Analysis complete!")
# Add results to dataframe
df['sentiment'] = results
# Show results
st.subheader("📋 Analysis Results")
st.dataframe(df, use_container_width=True)
# Show summary
st.subheader("📈 Summary Statistics")
sentiment_counts = df['sentiment'].value_counts()
col1, col2, col3 = st.columns(3)
with col1:
st.metric("Total Records", len(df))
with col2:
st.metric("Positive", sentiment_counts.get('positive', 0))
with col3:
st.metric("Negative", sentiment_counts.get('negative', 0))
# Download
csv = df.to_csv(index=False).encode('utf-8')
st.download_button(
"💾 Download Results CSV",
csv,
"sentiment_analysis_results.csv",
"text/csv",
use_container_width=True
)
except Exception as e:
st.error(f"❌ Error processing file: {str(e)}")
# Footer
st.markdown("---")
st.markdown(
"<div style='text-align: center; color: #6B7280;'>"
"Built with ❤️ using Streamlit & Hugging Face Transformers"
"</div>",
unsafe_allow_html=True
) |