Spaces:
Sleeping
Sleeping
File size: 17,411 Bytes
8cef7ca | 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 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | import streamlit as st
from transformers import pipeline
from rouge_score import rouge_scorer
import textstat
import plotly.express as px
import plotly.graph_objects as go
from plotly.subplots import make_subplots
import pandas as pd
# -----------------------------
# Page Configuration
# -----------------------------
st.set_page_config(
page_title="Text Evaluation Suite",
page_icon="π",
layout="wide",
initial_sidebar_state="expanded"
)
# -----------------------------
# Custom CSS for Black & White Theme
# -----------------------------
st.markdown("""
<style>
/* Main background */
.stApp {
background-color: #000000;
color: #ffffff;
}
/* Sidebar styling */
.css-1d391kg {
background-color: #111111;
}
/* Headers */
h1, h2, h3, h4, h5, h6 {
color: #ffffff !important;
font-weight: 600;
letter-spacing: -0.5px;
}
/* Main title styling */
.main-title {
font-size: 3rem;
font-weight: 700;
text-align: center;
background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 2rem;
}
/* Subtitle styling */
.subtitle {
text-align: center;
font-size: 1.2rem;
color: #cccccc;
margin-bottom: 3rem;
font-weight: 300;
}
/* Cards */
.metric-card {
background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
border: 1px solid #333333;
border-radius: 12px;
padding: 1.5rem;
margin: 1rem 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.comparison-card {
background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
border: 1px solid #333333;
border-radius: 12px;
padding: 2rem;
margin: 1rem 0;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
/* Text areas */
.stTextArea textarea {
background-color: #1a1a1a !important;
color: #ffffff !important;
border: 1px solid #333333 !important;
border-radius: 8px !important;
}
/* File uploader */
.stFileUploader > div {
background-color: #1a1a1a;
border: 2px dashed #666666;
border-radius: 12px;
padding: 2rem;
}
/* Buttons */
.stButton > button {
background: linear-gradient(135deg, #ffffff, #e0e0e0);
color: #000000;
border: none;
border-radius: 8px;
padding: 0.75rem 2rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.stButton > button:hover {
background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
transform: translateY(-2px);
}
/* Radio buttons and selectbox */
.stRadio > div, .stSelectbox > div > div {
background-color: #1a1a1a;
border-radius: 8px;
}
/* Metrics display */
.metric-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 2rem 0;
}
.metric-item {
background: linear-gradient(145deg, #222222, #111111);
border: 1px solid #444444;
border-radius: 10px;
padding: 1.5rem;
margin: 0.5rem;
text-align: center;
min-width: 150px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.metric-value {
font-size: 2rem;
font-weight: 700;
color: #ffffff;
}
.metric-label {
color: #cccccc;
font-size: 0.9rem;
margin-top: 0.5rem;
}
/* Section headers */
.section-header {
border-bottom: 2px solid #333333;
padding-bottom: 1rem;
margin-bottom: 2rem;
font-size: 1.5rem;
font-weight: 600;
}
/* Progress indicator */
.progress-container {
background-color: #1a1a1a;
border-radius: 20px;
padding: 1rem;
margin: 1rem 0;
text-align: center;
}
</style>
""", unsafe_allow_html=True)
# -----------------------------
# Summarizer Loader (cached)
# -----------------------------
@st.cache_resource
def load_summarizer(model_name):
return pipeline("summarization", model=model_name)
# -----------------------------
# Calculate ROUGE
# -----------------------------
def calculate_rouge(reference, generated):
scorer = rouge_scorer.RougeScorer(["rouge1", "rouge2", "rougeL"], use_stemmer=True)
return scorer.score(reference, generated)
# -----------------------------
# Calculate readability
# -----------------------------
def get_readability_scores(text):
return {
"Flesch Reading Ease": textstat.flesch_reading_ease(text),
"SMOG Index": textstat.smog_index(text),
"Flesch-Kincaid Grade": textstat.flesch_kincaid_grade(text),
"Gunning Fog": textstat.gunning_fog(text),
"Automated Readability": textstat.automated_readability_index(text),
"Coleman-Liau": textstat.coleman_liau_index(text),
"Dale-Chall": textstat.dale_chall_readability_score(text),
}
# -----------------------------
# Enhanced Plotly Theme
# -----------------------------
def create_readability_chart(orig_scores, sum_scores):
categories = list(orig_scores.keys())
fig = go.Figure()
# Add bars for original text
fig.add_trace(go.Bar(
name='Original',
x=categories,
y=list(orig_scores.values()),
marker_color='#ffffff',
marker_line_color='#cccccc',
marker_line_width=2,
hovertemplate='<b>%{x}</b><br>Original: %{y:.2f}<extra></extra>'
))
# Add bars for summary
fig.add_trace(go.Bar(
name='Summary',
x=categories,
y=list(sum_scores.values()),
marker_color='#666666',
marker_line_color='#444444',
marker_line_width=2,
hovertemplate='<b>%{x}</b><br>Summary: %{y:.2f}<extra></extra>'
))
fig.update_layout(
title='Readability Analysis Comparison',
title_font_size=20,
title_font_color='#ffffff',
xaxis_title='Readability Metrics',
yaxis_title='Scores',
barmode='group',
plot_bgcolor='#000000',
paper_bgcolor='#000000',
font_color='#ffffff',
xaxis=dict(
gridcolor='#333333',
zeroline=False
),
yaxis=dict(
gridcolor='#333333',
zeroline=False
),
legend=dict(
bgcolor='rgba(0,0,0,0)',
bordercolor='#666666',
borderwidth=1
)
)
return fig
def create_rouge_chart(rouge_scores):
metrics = []
precision_scores = []
recall_scores = []
f1_scores = []
for metric, result in rouge_scores.items():
metrics.append(metric.upper())
precision_scores.append(result.precision)
recall_scores.append(result.recall)
f1_scores.append(result.fmeasure)
fig = go.Figure()
fig.add_trace(go.Bar(
name='Precision',
x=metrics,
y=precision_scores,
marker_color='#ffffff',
hovertemplate='<b>%{x}</b><br>Precision: %{y:.3f}<extra></extra>'
))
fig.add_trace(go.Bar(
name='Recall',
x=metrics,
y=recall_scores,
marker_color='#aaaaaa',
hovertemplate='<b>%{x}</b><br>Recall: %{y:.3f}<extra></extra>'
))
fig.add_trace(go.Bar(
name='F1-Score',
x=metrics,
y=f1_scores,
marker_color='#666666',
hovertemplate='<b>%{x}</b><br>F1-Score: %{y:.3f}<extra></extra>'
))
fig.update_layout(
title='ROUGE Evaluation Metrics',
title_font_size=20,
title_font_color='#ffffff',
xaxis_title='ROUGE Metrics',
yaxis_title='Scores',
barmode='group',
plot_bgcolor='#000000',
paper_bgcolor='#000000',
font_color='#ffffff',
xaxis=dict(
gridcolor='#333333',
zeroline=False
),
yaxis=dict(
gridcolor='#333333',
zeroline=False,
range=[0, 1]
),
legend=dict(
bgcolor='rgba(0,0,0,0)',
bordercolor='#666666',
borderwidth=1
)
)
return fig
# -----------------------------
# Main Application
# -----------------------------
def main():
# Main title
st.markdown('<h1 class="main-title" style="font-size: 2rem; font-weight: 500;">β Text Evaluation </h1>', unsafe_allow_html=True)
st.markdown('<p class="subtitle" style="font-size: 1rem; font-weight: 300;">Advanced AI-powered text summarization with comprehensive evaluation metrics</p>', unsafe_allow_html=True)
# Sidebar configuration
with st.sidebar:
st.markdown("### βοΈ Configuration")
# Model selection
model_choice = st.selectbox(
"π€ Summarization Model",
["facebook/bart-large-cnn", "t5-small", "sshleifer/distilbart-cnn-12-6"],
help="Choose the AI model for text summarization"
)
# Summary length
length_choice = st.radio(
"π Summary Length",
["Short", "Medium", "Long"],
help="Select the desired length of the generated summary"
)
if length_choice == "Short":
max_len, min_len = 60, 20
elif length_choice == "Medium":
max_len, min_len = 120, 40
else: # Long
max_len, min_len = 200, 80
st.markdown(f"**Length Range:** {min_len}-{max_len} words")
# File upload section
st.markdown('<div class="section-header">π Document Upload</div>', unsafe_allow_html=True)
uploaded_file = st.file_uploader(
"Upload your text document for analysis",
type=["txt"],
help="Upload a .txt file containing the text you want to summarize and evaluate"
)
if uploaded_file is not None:
# Read and display file info
text = uploaded_file.read().decode("utf-8")
word_count = len(text.split())
char_count = len(text)
col1, col2, col3 = st.columns(3)
with col1:
st.markdown(f'<div class="metric-item"><div class="metric-value">{word_count:,}</div><div class="metric-label">Words</div></div>', unsafe_allow_html=True)
with col2:
st.markdown(f'<div class="metric-item"><div class="metric-value">{char_count:,}</div><div class="metric-label">Characters</div></div>', unsafe_allow_html=True)
with col3:
estimated_time = max(1, word_count // 100)
st.markdown(f'<div class="metric-item"><div class="metric-value">{estimated_time}</div><div class="metric-label">Est. Minutes</div></div>', unsafe_allow_html=True)
# Generate button
st.markdown("---")
if st.button("π Generate Summary & Analyze", use_container_width=True):
with st.spinner("π Processing your text... This may take a few moments"):
try:
# Load model and generate summary
summarizer = load_summarizer(model_choice)
summary = summarizer(text, max_length=max_len, min_length=min_len, do_sample=False)[0]['summary_text']
# Success message
st.success("β
Analysis completed successfully!")
# Text comparison section
st.markdown('<div class="section-header">π Text Comparison</div>', unsafe_allow_html=True)
col1, col2 = st.columns(2)
with col1:
st.markdown('<div class="comparison-card">', unsafe_allow_html=True)
st.markdown("**π Original Text**")
st.text_area("", text, height=300, disabled=True, key="original")
st.markdown('</div>', unsafe_allow_html=True)
with col2:
st.markdown('<div class="comparison-card">', unsafe_allow_html=True)
st.markdown("**β¨ Generated Summary**")
st.text_area("", summary, height=300, disabled=True, key="summary")
# Summary stats
summary_words = len(summary.split())
compression_ratio = (1 - summary_words / word_count) * 100
st.markdown(f"**Compression:** {compression_ratio:.1f}% reduction ({summary_words} words)")
st.markdown('</div>', unsafe_allow_html=True)
# Readability Analysis
st.markdown('<div class="section-header">π Readability Analysis</div>', unsafe_allow_html=True)
orig_scores = get_readability_scores(text)
sum_scores = get_readability_scores(summary)
readability_fig = create_readability_chart(orig_scores, sum_scores)
st.plotly_chart(readability_fig, use_container_width=True)
# ROUGE Evaluation
st.markdown('<div class="section-header">π ROUGE Evaluation</div>', unsafe_allow_html=True)
rouge_scores = calculate_rouge(text, summary)
# ROUGE metrics cards
cols = st.columns(3)
rouge_metrics = ["rouge1", "rouge2", "rougeL"]
rouge_names = ["ROUGE-1", "ROUGE-2", "ROUGE-L"]
for i, (metric, name) in enumerate(zip(rouge_metrics, rouge_names)):
with cols[i]:
result = rouge_scores[metric]
st.markdown(f'''
<div class="metric-card">
<h3 style="text-align: center; margin-bottom: 1rem;">{name}</h3>
<div style="text-align: center;">
<div><strong>Precision:</strong> {result.precision:.3f}</div>
<div><strong>Recall:</strong> {result.recall:.3f}</div>
<div><strong>F1-Score:</strong> {result.fmeasure:.3f}</div>
</div>
</div>
''', unsafe_allow_html=True)
# ROUGE chart
rouge_fig = create_rouge_chart(rouge_scores)
st.plotly_chart(rouge_fig, use_container_width=True)
# Performance summary
st.markdown('<div class="section-header">π― Performance Summary</div>', unsafe_allow_html=True)
avg_f1 = sum(result.fmeasure for result in rouge_scores.values()) / len(rouge_scores)
if avg_f1 >= 0.5:
performance = "Excellent"
color = "#00ff00"
elif avg_f1 >= 0.3:
performance = "Good"
color = "#ffff00"
else:
performance = "Needs Improvement"
color = "#ff6666"
st.markdown(f'''
<div style="text-align: center; padding: 2rem; background: linear-gradient(145deg, #1a1a1a, #0a0a0a); border-radius: 12px; margin: 1rem 0;">
<h2 style="color: {color};">Overall Performance: {performance}</h2>
<p style="font-size: 1.2rem;">Average F1-Score: {avg_f1:.3f}</p>
<p style="color: #cccccc;">Model: {model_choice} | Length: {length_choice}</p>
</div>
''', unsafe_allow_html=True)
except Exception as e:
st.error(f"β An error occurred during processing: {str(e)}")
st.info("π‘ Try with a shorter text or different model if the issue persists.")
else:
# Welcome message when no file is uploaded
st.markdown('''
<div style="text-align: center; padding: 4rem 2rem; background: linear-gradient(145deg, #1a1a1a, #0a0a0a); border-radius: 12px; margin: 2rem 0;">
<h2>π Ready to Analyze Your Text?</h2>
<p style="font-size: 1.1rem; color: #cccccc; margin: 1rem 0;">Upload a text file to get started with AI-powered summarization and comprehensive evaluation.</p>
<div style="margin-top: 2rem;">
<p><strong>Features:</strong></p>
<p>β¨ Advanced AI Summarization | π ROUGE Score Analysis | π Readability Metrics | π― Performance Insights</p>
</div>
</div>
''', unsafe_allow_html=True)
if __name__ == "__main__":
main() |