File size: 15,737 Bytes
486eff6 |
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 |
#!/usr/bin/env python3
"""
Complete Pipeline Demo for Integrated Crossword Generator
Demonstrates the full capabilities of the integrated system combining:
- UnifiedThematicWordGenerator: Smart word discovery with 100K+ vocabulary
- APIClueGenerator: High-quality clue generation using multiple AI models
Shows real crossword creation scenarios and advanced features.
"""
import sys
import os
import time
import asyncio
from pathlib import Path
# Add hack directory to path for imports
sys.path.insert(0, str(Path(__file__).parent))
try:
from integrated_crossword_generator import IntegratedCrosswordGenerator, CrosswordEntry
INTEGRATED_AVAILABLE = True
except ImportError as e:
print(f"โ Integration import error: {e}")
INTEGRATED_AVAILABLE = False
def demo_basic_integration():
"""Demo basic integration functionality."""
print("๐ Demo 1: Basic Integration")
print("=" * 50)
generator = IntegratedCrosswordGenerator(vocab_size_limit=50000)
generator.initialize()
system_info = generator.get_system_info()
print("๐ System Components:")
for component, info in system_info['components'].items():
status = "โ
Ready" if info['ready'] else "โ Not Ready"
details = ""
if component == 'thematic_generator' and info['ready']:
details = f" ({info['vocab_size']:,} words)"
elif component == 'api_clue_generator' and info['ready']:
details = f" ({len(info['models'])} models)"
print(f" {component}: {status}{details}")
# Basic generation test
print(f"\n๐ฏ Generating crossword entries for 'animals'...")
start_time = time.time()
entries = generator.generate_crossword_entries(
topic="animals",
num_words=5,
difficulty="medium"
)
generation_time = time.time() - start_time
if entries:
print(f"โ
Generated {len(entries)} entries in {generation_time:.2f}s")
print("\nResults:")
for i, entry in enumerate(entries, 1):
quality_icon = {"EXCELLENT": "๐", "GOOD": "โ
", "ACCEPTABLE": "๐", "POOR": "โ", "BASIC": "๐"}.get(entry.clue_quality, "?")
print(f" {i}. {entry.word:<10} | {quality_icon} {entry.clue}")
print(f" Similarity: {entry.similarity_score:.3f} | Model: {entry.clue_model}")
else:
print("โ No entries generated")
return generator
def demo_difficulty_levels(generator):
"""Demo difficulty-based generation."""
print("\n๐๏ธ Demo 2: Difficulty Levels")
print("=" * 50)
topic = "technology"
difficulties = ["easy", "medium", "hard"]
for difficulty in difficulties:
print(f"\n๐ {difficulty.upper()} difficulty:")
print("-" * 25)
try:
entries = generator.generate_crossword_entries(
topic=topic,
num_words=4,
difficulty=difficulty
)
if entries:
for entry in entries:
# Show word characteristics by difficulty
length_indicator = f"({len(entry.word)} letters)"
tier_short = entry.frequency_tier.split('_')[1] if '_' in entry.frequency_tier else entry.frequency_tier
print(f" {entry.word:<12} {length_indicator:<12} Tier {tier_short} | {entry.clue}")
else:
print(" No entries generated")
except Exception as e:
print(f" โ Error: {e}")
def demo_multiple_topics(generator):
"""Demo multi-topic crossword generation."""
print("\n๐ Demo 3: Multiple Topics")
print("=" * 50)
topics = ["science", "music", "sports", "food"]
print(f"๐ฏ Generating entries for {len(topics)} topics...")
start_time = time.time()
results = generator.generate_by_multiple_topics(
topics=topics,
words_per_topic=3,
difficulty="medium"
)
generation_time = time.time() - start_time
print(f"โ
Generated entries for all topics in {generation_time:.2f}s")
for topic, entries in results.items():
print(f"\n๐ {topic.upper()}:")
print("-" * 20)
if entries:
for entry in entries:
quality_icon = {"EXCELLENT": "๐", "GOOD": "โ
", "ACCEPTABLE": "๐"}.get(entry.clue_quality, "๐")
print(f" {entry.word:<10} | {quality_icon} {entry.clue}")
else:
print(" No entries generated")
return results
def demo_advanced_filtering(generator):
"""Demo advanced filtering and selection."""
print("\n๐ Demo 4: Advanced Filtering")
print("=" * 50)
# Generate a larger set to show filtering
print("๐ฏ Generating large set with filtering...")
entries = generator.generate_crossword_entries(
topic="nature",
num_words=8,
difficulty="medium",
min_similarity=0.4 # Higher threshold for better quality
)
if not entries:
print("โ No entries generated")
return
# Group by clue quality
quality_groups = {}
for entry in entries:
quality = entry.clue_quality
if quality not in quality_groups:
quality_groups[quality] = []
quality_groups[quality].append(entry)
print(f"โ
Generated {len(entries)} entries, grouped by quality:")
quality_order = ["EXCELLENT", "GOOD", "ACCEPTABLE", "POOR", "BASIC"]
for quality in quality_order:
if quality in quality_groups:
group = quality_groups[quality]
icon = {"EXCELLENT": "๐", "GOOD": "โ
", "ACCEPTABLE": "๐", "POOR": "โ", "BASIC": "๐"}[quality]
print(f"\n{icon} {quality} ({len(group)} entries):")
for entry in sorted(group, key=lambda x: x.similarity_score, reverse=True):
print(f" {entry.word:<12} (sim: {entry.similarity_score:.3f}) | {entry.clue}")
def demo_performance_analysis(generator):
"""Demo performance analysis and statistics."""
print("\n๐ Demo 5: Performance Analysis")
print("=" * 50)
# Reset stats
generator.stats = {
'words_discovered': 0,
'clues_generated': 0,
'api_calls': 0,
'cache_hits': 0,
'total_time': 0.0
}
# Performance test scenarios
scenarios = [
{"topic": "animals", "num_words": 3, "difficulty": "easy"},
{"topic": "technology", "num_words": 5, "difficulty": "medium"},
{"topic": "music", "num_words": 4, "difficulty": "hard"}
]
print("๐โโ๏ธ Running performance scenarios...")
all_entries = []
scenario_times = []
for i, scenario in enumerate(scenarios, 1):
print(f"\nScenario {i}: {scenario['topic']} ({scenario['difficulty']})")
start_time = time.time()
entries = generator.generate_crossword_entries(**scenario)
scenario_time = time.time() - start_time
scenario_times.append(scenario_time)
all_entries.extend(entries)
print(f" Time: {scenario_time:.2f}s | Entries: {len(entries)}")
# Final statistics
final_stats = generator.get_stats()
print("\n๐ Performance Summary:")
print(f" Total entries generated: {len(all_entries)}")
print(f" Total words discovered: {final_stats['words_discovered']}")
print(f" Total API calls: {final_stats['api_calls']}")
print(f" Total time: {final_stats['total_time']:.2f}s")
if len(all_entries) > 0:
avg_time_per_entry = final_stats['total_time'] / len(all_entries)
print(f" Avg time per entry: {avg_time_per_entry:.2f}s")
# Quality distribution
quality_counts = {}
for entry in all_entries:
quality = entry.clue_quality
quality_counts[quality] = quality_counts.get(quality, 0) + 1
print(f"\n๐ฏ Quality Distribution:")
for quality, count in sorted(quality_counts.items()):
percentage = (count / len(all_entries)) * 100
print(f" {quality}: {count} ({percentage:.1f}%)")
def demo_educational_crossword(generator):
"""Demo creating educational crossword content."""
print("\n๐ Demo 6: Educational Crossword Creation")
print("=" * 50)
# Educational themes
educational_topics = {
"Biology": "cellular biology",
"Chemistry": "chemical elements",
"Physics": "fundamental forces",
"Mathematics": "algebra concepts"
}
print("๐ Creating educational crossword content...")
educational_entries = {}
for subject, specific_topic in educational_topics.items():
print(f"\n๐ฌ {subject} - {specific_topic}:")
print("-" * 30)
try:
entries = generator.generate_crossword_entries(
topic=specific_topic,
num_words=3,
difficulty="medium"
)
educational_entries[subject] = entries
if entries:
for entry in entries:
# Show educational context
tier_level = entry.frequency_tier.split('_')[1] if '_' in entry.frequency_tier else "unknown"
print(f" {entry.word:<15} | {entry.clue}")
print(f" โโ Difficulty tier: {tier_level}, Model: {entry.clue_model}")
print()
else:
print(" No suitable educational terms found")
except Exception as e:
print(f" โ Error generating {subject} content: {e}")
# Summary of educational content
total_educational = sum(len(entries) for entries in educational_entries.values())
print(f"โ
Created {total_educational} educational crossword entries across {len(educational_topics)} subjects")
def demo_interactive_generation():
"""Demo interactive generation mode."""
print("\n๐ฎ Demo 7: Interactive Generation")
print("=" * 50)
generator = IntegratedCrosswordGenerator(vocab_size_limit=25000)
generator.initialize()
if not (generator.thematic_ready or generator.api_ready):
print("โ System not ready for interactive demo")
return
print("๐ฏ Interactive Crossword Generator")
print("Enter topics to generate crossword entries (or 'quit' to exit)")
print("Format: <topic> [num_words] [difficulty]")
print("Example: animals 5 medium")
print()
while True:
try:
user_input = input("๐ Enter topic (or 'quit'): ").strip()
if user_input.lower() in ['quit', 'exit', 'q']:
break
if not user_input:
continue
# Parse input
parts = user_input.split()
topic = parts[0]
num_words = int(parts[1]) if len(parts) > 1 and parts[1].isdigit() else 4
difficulty = parts[2] if len(parts) > 2 and parts[2] in ['easy', 'medium', 'hard'] else 'medium'
print(f"\n๐ Generating {num_words} {difficulty} entries for '{topic}'...")
start_time = time.time()
entries = generator.generate_crossword_entries(
topic=topic,
num_words=num_words,
difficulty=difficulty
)
generation_time = time.time() - start_time
if entries:
print(f"โ
Generated {len(entries)} entries in {generation_time:.2f}s:")
print()
for i, entry in enumerate(entries, 1):
quality_icon = {"EXCELLENT": "๐", "GOOD": "โ
", "ACCEPTABLE": "๐", "POOR": "โ", "BASIC": "๐"}.get(entry.clue_quality, "?")
print(f" {i}. {entry.word:<12} | {quality_icon} {entry.clue}")
print(f" Similarity: {entry.similarity_score:.3f} | {entry.tier_description}")
print()
else:
print("โ No entries generated. Try a different topic.")
except KeyboardInterrupt:
print("\n\n๐ Exiting interactive mode")
break
except Exception as e:
print(f"โ Error: {e}")
# Show final stats
final_stats = generator.get_stats()
print("\n๐ Interactive Session Stats:")
print(f" Words discovered: {final_stats['words_discovered']}")
print(f" Clues generated: {final_stats['clues_generated']}")
print(f" Total time: {final_stats['total_time']:.2f}s")
def main():
"""Run complete pipeline demonstration."""
if not INTEGRATED_AVAILABLE:
print("โ Integrated crossword generator not available")
print("Please check that all dependencies are installed:")
print(" - thematic_word_generator.py")
print(" - api_clue_generator.py")
print(" - All required Python packages")
return
# Check for required token
hf_token = os.getenv('HF_TOKEN')
if not hf_token:
print("โ HF_TOKEN environment variable not set")
print("Set your token: export HF_TOKEN='your_token_here'")
print("Some features will be limited without API access")
print()
print("๐ Complete Pipeline Demo: Integrated Crossword Generator")
print("=" * 70)
print("Demonstrating the integration of:")
print(" ๐ Smart Word Discovery (Thematic Generator)")
print(" ๐ค High-Quality Clue Generation (API Models)")
print(" ๐ Difficulty Control (Frequency Tiers)")
print(" ๐ฏ Topic-Focused Generation")
print()
try:
# Run all demos
generator = demo_basic_integration()
if generator and generator.is_initialized:
demo_difficulty_levels(generator)
demo_multiple_topics(generator)
demo_advanced_filtering(generator)
demo_performance_analysis(generator)
demo_educational_crossword(generator)
# Optional interactive demo
print("\n" + "=" * 70)
choice = input("๐ฎ Run interactive demo? (y/n): ").strip().lower()
if choice in ['y', 'yes']:
demo_interactive_generation()
print("\n" + "=" * 70)
print("โ
COMPLETE PIPELINE DEMO FINISHED")
print("=" * 70)
print("๐ Successfully demonstrated integrated crossword generation!")
print("\n๐ก This system combines the best of both worlds:")
print(" ๐ Intelligent word discovery with 100K+ vocabulary")
print(" ๐ค AI-powered clue generation using multiple models")
print(" ๐ Difficulty control using frequency analysis")
print(" ๐ฏ Theme-focused content generation")
print(" โก Efficient caching and batch processing")
print(f"\n๐ Key files created:")
print(f" โข integrated_crossword_generator.py - Main integration class")
print(f" โข test_integrated_system.py - Comprehensive tests")
print(f" โข demo_complete_pipeline.py - This demonstration")
print(f"\n๐ Ready for production use in crossword applications!")
except KeyboardInterrupt:
print("\n\n๐ Demo interrupted by user")
except Exception as e:
print(f"\nโ Demo error: {e}")
print("Check system dependencies and configuration")
if __name__ == "__main__":
main()
|