Spaces:
No application file
No application file
File size: 20,027 Bytes
f2dd765 |
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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
"""
Main Integration File - AI Interview System
SIMPLIFIED, PROFESSIONAL UI - Normal Website Look
"""
import streamlit as st
import warnings
import os
from PIL import Image, ImageDraw
# Import the three modular systems
from Recording_system import RecordingSystem
from analysis_system import AnalysisSystem
from scoring_dashboard import ScoringDashboard
warnings.filterwarnings('ignore')
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
# Try importing optional modules
try:
import mediapipe as mp
MP_AVAILABLE = True
mp_face_mesh = mp.solutions.face_mesh
mp_hands = mp.solutions.hands
except:
MP_AVAILABLE = False
try:
from ultralytics import YOLO
YOLO_AVAILABLE = True
except:
YOLO_AVAILABLE = False
try:
from sentence_transformers import SentenceTransformer
SENTENCE_TRANSFORMER_AVAILABLE = True
except:
SENTENCE_TRANSFORMER_AVAILABLE = False
try:
from deepface import DeepFace
DEEPFACE_AVAILABLE = True
except:
DEEPFACE_AVAILABLE = False
# ==================== PAGE CONFIG ====================
st.set_page_config(page_title="Interview Assessment Platform", layout="wide", page_icon="π―")
# ==================== SIMPLE, CLEAN STYLES ====================
st.markdown("""
<style>
/* Hide Streamlit branding */
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
header {visibility: hidden;}
/* Simple body styling */
body {
background-color: #ffffff;
color: #333333;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
/* Simple headers */
h1 {
color: #2c3e50;
font-weight: 600;
margin-bottom: 0.5rem;
}
h2 {
color: #34495e;
font-weight: 500;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
h3 {
color: #555555;
font-weight: 500;
}
/* Simple boxes */
.info-box {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
}
.success-box {
background: #d4edda;
border: 1px solid #c3e6cb;
border-left: 4px solid #28a745;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
}
.warning-box {
background: #fff3cd;
border: 1px solid #ffeaa7;
border-left: 4px solid #ffc107;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
}
.error-box {
background: #f8d7da;
border: 1px solid #f5c6cb;
border-left: 4px solid #dc3545;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
}
/* Simple question box */
.question-box {
background: #ffffff;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 1.5rem;
margin-bottom: 1rem;
min-height: 200px;
}
.question-box h3 {
color: #2c3e50;
margin-bottom: 1rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid #e9ecef;
}
/* Simple metric cards */
.metric-card {
background: #ffffff;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 1rem;
text-align: center;
margin-bottom: 0.5rem;
}
.metric-card h3 {
color: #2c3e50;
font-size: 1.5rem;
margin: 0;
}
.metric-card p {
color: #6c757d;
font-size: 0.875rem;
margin: 0.25rem 0 0 0;
}
/* Hide sidebar */
[data-testid="stSidebar"] {
display: none;
}
/* Simple buttons */
.stButton > button {
border-radius: 4px;
border: 1px solid #dee2e6;
}
/* Simple progress bar */
.stProgress > div > div {
background-color: #007bff;
}
</style>
""", unsafe_allow_html=True)
# ==================== QUESTIONS CONFIGURATION ====================
QUESTIONS = [
{
"question": "Tell me about yourself.",
"type": "personal",
"ideal_answer": "I'm a computer science postgraduate with a strong interest in AI and software development. I've worked on several projects involving Python, machine learning, and data analysis, which helped me improve both my technical and problem-solving skills. I enjoy learning new technologies and applying them to create practical solutions. Outside of academics, I like collaborating on team projects and continuously developing my professional skills.",
"tip": "Focus on your background, skills, and personality"
},
{
"question": "What are your strengths and weaknesses?",
"type": "personal",
"ideal_answer": "One of my key strengths is that I'm very detail-oriented and persistent β I make sure my work is accurate and well-tested. I also enjoy solving complex problems and learning new tools quickly. As for weaknesses, I used to spend too much time perfecting small details, which sometimes slowed me down. But I've been improving by prioritizing tasks better and focusing on overall impact.",
"tip": "Be honest and show self-awareness"
},
{
"question": "Where do you see yourself in the next 5 years?",
"type": "personal",
"ideal_answer": "In the next five years, I see myself growing into a more responsible and skilled professional, ideally in a role where I can contribute to meaningful projects involving AI and software development. I'd also like to take on leadership responsibilities and guide new team members as I gain experience.",
"tip": "Show ambition aligned with career growth"
}
]
# ==================== GENERATE DEMO IMAGES ====================
def create_frame_demo_image(is_correct=True):
"""Create demonstration image showing correct/incorrect positioning"""
width, height = 500, 350
img = Image.new('RGB', (width, height), color='#f8f9fa')
draw = ImageDraw.Draw(img)
margin = 40
boundary_color = '#28a745' if is_correct else '#dc3545'
# Draw boundaries
draw.rectangle([margin, margin, width-margin, height-margin], outline=boundary_color, width=3)
if is_correct:
# Draw person inside
head_x, head_y = width // 2, margin + 60
draw.ellipse([head_x - 30, head_y - 30, head_x + 30, head_y + 30], fill='#ffc107', outline='#333333', width=2)
body_y = head_y + 40
draw.rectangle([head_x - 40, body_y, head_x + 40, body_y + 80], fill='#007bff', outline='#333333', width=2)
draw.text((width//2 - 80, height - 30), "β Correct Position", fill='#28a745')
else:
# Draw person outside
head_x, head_y = margin - 20, margin + 60
draw.ellipse([head_x - 30, head_y - 30, head_x + 30, head_y + 30], fill='#ffc107', outline='#333333', width=2)
draw.text((width//2 - 80, height - 30), "β Outside Bounds", fill='#dc3545')
return img
# ==================== HOME PAGE ====================
def show_home_page():
"""Display clean home page"""
st.title("Interview Assessment Platform")
st.write("Professional evaluation system for video interviews")
st.markdown("---")
# Simple features
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("""
**π Structured Assessment**
Standardized evaluation with consistent criteria
""")
with col2:
st.markdown("""
**π Detailed Analytics**
Comprehensive metrics and performance insights
""")
with col3:
st.markdown("""
**β
Compliance Monitoring**
Real-time monitoring ensures integrity
""")
st.markdown("---")
# Introduction
st.subheader("Before You Begin")
st.write("""
This platform evaluates candidates through structured video interviews. Please review
the camera positioning requirements below to ensure a smooth assessment.
""")
# Frame positioning
st.subheader("Camera Positioning Requirements")
col1, col2 = st.columns(2)
with col1:
st.markdown("**β
Correct Positioning**")
correct_img = create_frame_demo_image(is_correct=True)
st.image(correct_img, use_container_width=True)
st.markdown("""
- Center yourself in the frame
- Keep entire face visible
- Remain alone in the frame
- Ensure adequate lighting
- Maintain forward gaze
""")
with col2:
st.markdown("**β Common Mistakes**")
incorrect_img = create_frame_demo_image(is_correct=False)
st.image(incorrect_img, use_container_width=True)
st.markdown("""
- Moving outside boundaries
- Multiple people visible
- Obstructed or partial view
- Poor lighting conditions
- Extended periods looking away
""")
st.markdown("---")
# Assessment process
st.subheader("Assessment Process")
st.markdown(f"""
1. **Initial Setup (60 seconds):** Position yourself within marked boundaries
2. **Environment Scan:** System records baseline to detect changes
3. **Interview Session:** Respond to {len(QUESTIONS)} questions (20 seconds each)
4. **Continuous Monitoring:** System monitors compliance throughout
5. **Results Analysis:** Receive comprehensive evaluation with feedback
""")
st.markdown("---")
# Technical requirements
st.subheader("Technical Requirements")
col1, col2 = st.columns(2)
with col1:
st.markdown("""
**Hardware**
- Functional webcam (720p recommended)
- Clear microphone
- Stable internet (5 Mbps minimum)
- Desktop or laptop computer
""")
with col2:
st.markdown("""
**Environment**
- Quiet, private space
- Front-facing lighting
- Neutral background
- Comfortable seating
""")
st.markdown("---")
# Confirmation
st.subheader("Ready to Begin")
if 'guidelines_accepted' not in st.session_state:
st.session_state.guidelines_accepted = False
st.session_state.guidelines_accepted = st.checkbox(
f"I confirm that I have reviewed all guidelines and am prepared to complete {len(QUESTIONS)} interview questions.",
value=st.session_state.guidelines_accepted,
key="guidelines_checkbox"
)
if st.session_state.guidelines_accepted:
st.success("β
You are ready to proceed with the assessment.")
if st.button("Begin Assessment", type="primary"):
st.session_state.page = "interview"
st.session_state.interview_started = False
st.rerun()
else:
st.info("βΉοΈ Please confirm that you have reviewed the guidelines to continue.")
# ==================== LOAD MODELS ====================
@st.cache_resource(show_spinner="Initializing assessment system...")
def load_all_models():
"""Load all AI models and return dictionary"""
models = {}
if DEEPFACE_AVAILABLE:
try:
_ = DeepFace.build_model("Facenet")
models['face_loaded'] = True
except:
models['face_loaded'] = False
else:
models['face_loaded'] = False
if SENTENCE_TRANSFORMER_AVAILABLE:
try:
models['sentence_model'] = SentenceTransformer('all-MiniLM-L6-v2')
except:
models['sentence_model'] = None
else:
models['sentence_model'] = None
if MP_AVAILABLE:
try:
models['face_mesh'] = mp_face_mesh.FaceMesh(
static_image_mode=False,
max_num_faces=5,
refine_landmarks=True,
min_detection_confidence=0.5,
min_tracking_confidence=0.5
)
models['hands'] = mp_hands.Hands(
static_image_mode=False,
max_num_hands=2,
min_detection_confidence=0.5,
min_tracking_confidence=0.5
)
except:
models['face_mesh'] = None
models['hands'] = None
else:
models['face_mesh'] = None
models['hands'] = None
if YOLO_AVAILABLE:
try:
models['yolo'] = YOLO("yolov8n.pt")
models['yolo_cls'] = YOLO("yolov8n-cls.pt")
except:
models['yolo'] = None
models['yolo_cls'] = None
else:
models['yolo'] = None
models['yolo_cls'] = None
return models
models = load_all_models()
# ==================== INITIALIZE SYSTEMS ====================
recording_system = RecordingSystem(models)
analysis_system = AnalysisSystem(models)
scoring_dashboard = ScoringDashboard()
# ==================== SESSION STATE ====================
if "page" not in st.session_state:
st.session_state.page = "home"
if "results" not in st.session_state:
st.session_state.results = []
if "interview_started" not in st.session_state:
st.session_state.interview_started = False
if "interview_complete" not in st.session_state:
st.session_state.interview_complete = False
# ==================== MAIN ROUTING ====================
if st.session_state.page == "home":
show_home_page()
else: # Interview page
st.title("Interview Assessment Session")
st.write("Complete all questions to receive your evaluation")
# Simple navigation
if not st.session_state.interview_complete:
if st.button("β Back to Home"):
st.session_state.page = "home"
st.session_state.interview_started = False
st.session_state.interview_complete = False
st.rerun()
else:
col1, col2 = st.columns(2)
with col1:
if st.button("β Back to Home"):
st.session_state.page = "home"
st.session_state.interview_started = False
st.session_state.interview_complete = False
st.rerun()
with col2:
if st.button("π New Assessment"):
st.session_state.results = []
st.session_state.interview_started = False
st.session_state.interview_complete = False
st.rerun()
st.markdown("---")
# ==================== MAIN CONTENT ====================
if not st.session_state.interview_started and not st.session_state.interview_complete:
st.subheader("Ready to Begin?")
st.write(f"""
- You will respond to **{len(QUESTIONS)} questions**
- Each question allows **20 seconds** for your response
- The system will monitor compliance throughout
""")
if st.button("Begin Assessment", type="primary"):
st.session_state.interview_started = True
st.rerun()
elif st.session_state.interview_started and not st.session_state.interview_complete:
col_question, col_video = st.columns([2, 3])
with col_question:
question_placeholder = st.empty()
with col_video:
video_placeholder = st.empty()
st.markdown("---")
countdown_placeholder = st.empty()
status_placeholder = st.empty()
progress_bar = st.progress(0)
timer_text = st.empty()
ui_callbacks = {
'countdown_update': lambda msg: countdown_placeholder.warning(msg) if msg else countdown_placeholder.empty(),
'video_update': lambda frame: video_placeholder.image(frame, channels="BGR", use_container_width=True) if frame is not None else video_placeholder.empty(),
'status_update': lambda text: status_placeholder.markdown(text) if text else status_placeholder.empty(),
'progress_update': lambda val: progress_bar.progress(val),
'timer_update': lambda text: timer_text.info(text) if text else timer_text.empty(),
'question_update': lambda q_num, q_text, q_tip="": question_placeholder.markdown(
f'''<div class="question-box">
<h3>Question {q_num} of {len(QUESTIONS)}</h3>
<p style="font-size: 1.1rem; margin: 1rem 0;">{q_text}</p>
<p style="color: #6c757d; font-size: 0.9rem; margin-top: 1rem;">
π‘ <strong>Tip:</strong> {q_tip if q_tip else "Speak clearly and confidently"}
</p>
</div>''',
unsafe_allow_html=True
) if q_text else question_placeholder.empty()
}
st.info("π¬ Initializing assessment session...")
session_result = recording_system.record_continuous_interview(
QUESTIONS,
duration_per_question=20,
ui_callbacks=ui_callbacks
)
if isinstance(session_result, dict) and 'questions_results' in session_result:
st.session_state.results = []
for q_result in session_result['questions_results']:
question_data = QUESTIONS[q_result['question_number'] - 1]
analysis_results = analysis_system.analyze_recording(q_result, question_data, 20)
result = {
"question": question_data["question"],
"video_path": session_result.get('session_video_path', ''),
"audio_path": q_result.get('audio_path', ''),
"transcript": q_result.get('transcript', ''),
"violations": q_result.get('violations', []),
"violation_detected": q_result.get('violation_detected', False),
"fused_emotions": analysis_results.get('fused_emotions', {}),
"emotion_scores": analysis_results.get('emotion_scores', {}),
"accuracy": analysis_results.get('accuracy', 0),
"fluency": analysis_results.get('fluency', 0),
"wpm": analysis_results.get('wpm', 0),
"blink_count": q_result.get('blink_count', 0),
"outfit": analysis_results.get('outfit', 'Unknown'),
"has_valid_data": analysis_results.get('has_valid_data', False),
"fluency_detailed": analysis_results.get('fluency_detailed', {}),
"fluency_level": analysis_results.get('fluency_level', 'No Data'),
"grammar_errors": analysis_results.get('grammar_errors', 0),
"filler_count": analysis_results.get('filler_count', 0),
"filler_ratio": analysis_results.get('filler_ratio', 0),
"improvements_applied": analysis_results.get('improvements_applied', {})
}
decision, reasons = scoring_dashboard.decide_hire(result)
result["hire_decision"] = decision
result["hire_reasons"] = reasons
st.session_state.results.append(result)
st.session_state.interview_complete = True
total_violations = session_result.get('total_violations', 0)
if total_violations > 0:
st.warning(f"β οΈ Assessment completed with {total_violations} compliance issue(s).")
else:
st.success("π Assessment completed successfully!")
import time
time.sleep(2)
st.rerun()
else:
st.error("β Assessment failed. Please try again.")
st.session_state.interview_started = False
else:
scoring_dashboard.render_dashboard(st.session_state.results)
|