Spaces:
Running
Running
File size: 3,520 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 |
<!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>Blogs | 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">Technical Writings</h1>
<!-- Blog Posts -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">March 15, 2023</span>
<h2 class="text-2xl font-bold mt-2">Optimizing Transformers for Production</h2>
</div>
<p class="text-secondary mb-4">Exploring quantization, pruning and distillation techniques to make transformer models production-ready...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">January 8, 2023</span>
<h2 class="text-2xl font-bold mt-2">The Math Behind Attention Mechanisms</h2>
</div>
<p class="text-secondary mb-4">A deep dive into the linear algebra that powers modern attention-based architectures...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">November 22, 2022</span>
<h2 class="text-2xl font-bold mt-2">ML System Design Patterns</h2>
</div>
<p class="text-secondary mb-4">Architectural blueprints for scalable machine learning systems in enterprise environments...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
<article class="border p-6 hover:shadow-lg transition-all">
<div class="mb-4">
<span class="text-secondary">September 5, 2022</span>
<h2 class="text-2xl font-bold mt-2">From Research to Production</h2>
</div>
<p class="text-secondary mb-4">Bridging the gap between academic ML models and industrial-grade applications...</p>
<a href="#" class="text-primary underline hover:text-secondary">Read More</a>
</article>
</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> |