| <!DOCTYPE html>
|
| <html lang="en">
|
| <head>
|
| <meta charset="UTF-8">
|
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| <title>Handwritten Digit Recognition</title>
|
| <style>
|
| * {
|
| margin: 0;
|
| padding: 0;
|
| box-sizing: border-box;
|
| }
|
|
|
| body {
|
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| min-height: 100vh;
|
| display: flex;
|
| align-items: center;
|
| justify-content: center;
|
| padding: 20px;
|
| }
|
|
|
| .container {
|
| background: white;
|
| border-radius: 20px;
|
| box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
| padding: 40px;
|
| max-width: 800px;
|
| width: 100%;
|
| text-align: center;
|
| }
|
|
|
| .header {
|
| margin-bottom: 30px;
|
| }
|
|
|
| .title {
|
| font-size: 2.5rem;
|
| font-weight: 700;
|
| background: linear-gradient(135deg, #667eea, #764ba2);
|
| -webkit-background-clip: text;
|
| -webkit-text-fill-color: transparent;
|
| background-clip: text;
|
| margin-bottom: 10px;
|
| }
|
|
|
| .subtitle {
|
| font-size: 1.2rem;
|
| color: #666;
|
| margin-bottom: 20px;
|
| }
|
|
|
| .project-info {
|
| background: #f8f9fa;
|
| border-radius: 15px;
|
| padding: 25px;
|
| margin: 25px 0;
|
| border-left: 5px solid #667eea;
|
| }
|
|
|
| .info-title {
|
| font-size: 1.3rem;
|
| color: #333;
|
| margin-bottom: 15px;
|
| font-weight: 600;
|
| }
|
|
|
| .features {
|
| display: grid;
|
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
| gap: 15px;
|
| margin: 20px 0;
|
| }
|
|
|
| .feature {
|
| background: white;
|
| padding: 15px;
|
| border-radius: 10px;
|
| box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
| border: 1px solid #e9ecef;
|
| }
|
|
|
| .feature-icon {
|
| font-size: 2rem;
|
| margin-bottom: 10px;
|
| }
|
|
|
| .feature-title {
|
| font-weight: 600;
|
| color: #333;
|
| margin-bottom: 5px;
|
| }
|
|
|
| .feature-desc {
|
| color: #666;
|
| font-size: 0.9rem;
|
| }
|
|
|
| .author {
|
| margin-top: 30px;
|
| padding-top: 20px;
|
| border-top: 2px solid #e9ecef;
|
| }
|
|
|
| .author-name {
|
| font-size: 1.1rem;
|
| color: #333;
|
| font-weight: 600;
|
| }
|
|
|
| .author-title {
|
| color: #666;
|
| margin-top: 5px;
|
| }
|
|
|
| .tech-stack {
|
| display: flex;
|
| justify-content: center;
|
| gap: 15px;
|
| margin: 20px 0;
|
| flex-wrap: wrap;
|
| }
|
|
|
| .tech-item {
|
| background: linear-gradient(135deg, #667eea, #764ba2);
|
| color: white;
|
| padding: 8px 16px;
|
| border-radius: 20px;
|
| font-size: 0.9rem;
|
| font-weight: 500;
|
| }
|
|
|
| .accuracy-badge {
|
| background: linear-gradient(135deg, #4CAF50, #45a049);
|
| color: white;
|
| padding: 10px 20px;
|
| border-radius: 25px;
|
| display: inline-block;
|
| margin: 15px 0;
|
| font-weight: 600;
|
| box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
|
| }
|
|
|
| @media (max-width: 768px) {
|
| .container {
|
| padding: 25px;
|
| margin: 10px;
|
| }
|
|
|
| .title {
|
| font-size: 2rem;
|
| }
|
|
|
| .features {
|
| grid-template-columns: 1fr;
|
| }
|
| }
|
| </style>
|
| </head>
|
| <body>
|
| <div class="container">
|
| <div class="header">
|
| <h1 class="title">๐๏ธ Handwritten Digit Recognition</h1>
|
| <p class="subtitle">AI-Powered Digit Classification using Convolutional Neural Networks</p>
|
| </div>
|
|
|
| <div class="accuracy-badge">
|
| ๐ฏ Model Accuracy: 96.92%
|
| </div>
|
|
|
| <div class="project-info">
|
| <h3 class="info-title">๐ Project Overview</h3>
|
| <p>This application uses a deep learning model trained on the MNIST dataset to recognize handwritten digits (0-9) in real-time. Draw a digit and watch the AI predict it with high accuracy!</p>
|
| </div>
|
|
|
| <div class="tech-stack">
|
| <span class="tech-item">TensorFlow</span>
|
| <span class="tech-item">Keras</span>
|
| <span class="tech-item">CNN</span>
|
| <span class="tech-item">Gradio</span>
|
| <span class="tech-item">Python</span>
|
| </div>
|
|
|
| <div class="features">
|
| <div class="feature">
|
| <div class="feature-icon">๐ง </div>
|
| <div class="feature-title">Deep Learning</div>
|
| <div class="feature-desc">CNN architecture with 96.92% accuracy</div>
|
| </div>
|
| <div class="feature">
|
| <div class="feature-icon">โก</div>
|
| <div class="feature-title">Real-time</div>
|
| <div class="feature-desc">Instant predictions as you draw</div>
|
| </div>
|
| <div class="feature">
|
| <div class="feature-icon">๐จ</div>
|
| <div class="feature-title">Interactive</div>
|
| <div class="feature-desc">Draw directly in the browser</div>
|
| </div>
|
| <div class="feature">
|
| <div class="feature-icon">๐ฑ</div>
|
| <div class="feature-title">Responsive</div>
|
| <div class="feature-desc">Works on all devices</div>
|
| </div>
|
| </div>
|
|
|
| <div class="author">
|
| <div class="author-name">XYZ</div>
|
| <div class="author-title">AI/ML Developer</div>
|
| </div>
|
| </div>
|
| </body>
|
| </html> |