File size: 3,843 Bytes
b47590d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<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>