Spaces:
Running
Running
| <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Academics | CodeCanvas</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-white text-primary font-mono antialiased"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-16"> | |
| <section class="mb-20"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-12">Academic Journey</h1> | |
| <!-- Education Timeline --> | |
| <div class="relative"> | |
| <div class="border-l-2 border-primary absolute h-full left-4"></div> | |
| <div class="mb-12 pl-12 relative"> | |
| <div class="absolute w-8 h-8 bg-primary rounded-full -left-4 flex items-center justify-center"> | |
| <i data-feather="award" class="text-white w-4 h-4"></i> | |
| </div> | |
| <h2 class="text-2xl font-bold mb-2">M.S. Computer Science</h2> | |
| <p class="text-secondary mb-2">University of Technology | 2021-2023</p> | |
| <p class="text-secondary">Specialization in Machine Learning Systems</p> | |
| <div class="mt-4 grid grid-cols-1 md:grid-cols-2 gap-4"> | |
| <div class="border p-4"> | |
| <h3 class="font-bold mb-2">Thesis</h3> | |
| <p>"Optimizing Neural Architectures for Edge Deployment"</p> | |
| </div> | |
| <div class="border p-4"> | |
| <h3 class="font-bold mb-2">GPA</h3> | |
| <p>3.9/4.0</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-12 pl-12 relative"> | |
| <div class="absolute w-8 h-8 bg-primary rounded-full -left-4 flex items-center justify-center"> | |
| <i data-feather="book" class="text-white w-4 h-4"></i> | |
| </div> | |
| <h2 class="text-2xl font-bold mb-2">B.S. Computer Engineering</h2> | |
| <p class="text-secondary mb-2">State University | 2017-2021</p> | |
| <p class="text-secondary">Minor in Mathematics</p> | |
| </div> | |
| </div> | |
| <!-- Publications --> | |
| <div class="mt-20"> | |
| <h2 class="text-3xl font-bold mb-8">Research Publications</h2> | |
| <div class="space-y-6"> | |
| <div class="border-b pb-6"> | |
| <h3 class="text-xl font-bold mb-2">"Efficient Transformers for Real-Time Applications"</h3> | |
| <p class="text-secondary mb-2">Journal of Machine Learning Research, 2023</p> | |
| <a href="#" class="text-primary underline hover:text-secondary">View Paper</a> | |
| </div> | |
| <div class="border-b pb-6"> | |
| <h3 class="text-xl font-bold mb-2">"Quantization Techniques for Edge AI"</h3> | |
| <p class="text-secondary mb-2">NeurIPS Workshop, 2022</p> | |
| <a href="#" class="text-primary underline hover:text-secondary">View Paper</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |