-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
207 lines (184 loc) · 6.12 KB
/
blogs.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs | Akhil Shekkari</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #e3f2fd, #e1bee7);
color: #333;
overflow-x: hidden;
}
header {
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(10px);
padding: 20px;
text-align: center;
border-radius: 12px;
margin: 20px auto;
max-width: 90%;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-weight: 600;
color: #4a4a4a;
}
.back-arrow {
position: fixed;
top: 20px;
left: 20px;
background: rgba(255, 255, 255, 0.8);
color: #007aff;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
z-index: 1000;
}
.back-arrow:hover {
transform: translateX(-5px);
background: #007aff;
color: white;
}
.back-home {
display: none;
}
.blogs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
.blog-card {
background: rgba(255, 255, 255, 0.7);
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.blog-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}
.blog-card h3 {
margin: 10px 0;
color: #007aff;
font-size: 1.4em;
}
.blog-card p {
color: #666;
margin: 15px 0;
line-height: 1.6;
}
.read-more {
display: inline-flex;
align-items: center;
gap: 8px;
background: #000000;
color: white;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.read-more:hover {
background: #333333;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.read-more i {
font-size: 1.1em;
}
footer {
text-align: center;
padding: 10px 0;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
margin-top: 40px;
border-radius: 12px;
color: #333;
font-size: 14px;
box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}
footer a {
color: #007aff;
text-decoration: none;
font-weight: 600;
}
footer a:hover {
color: #0056b3;
}
</style>
</head>
<body>
<header>
<a href="index.html" class="back-arrow">
<i class="fas fa-arrow-left"></i>
</a>
<h1>Blogs</h1>
</header>
<div class="blogs">
<div class="blog-card">
<img src="outlier.jpg" alt="LLM Blog">
<h3>Are you an outlier?</h3>
<p>A blog on how to identify outliers in your data and how to handle them.</p>
<a href="https://medium.com/@akhil.masters21/are-you-an-outlier-7a6bd807eea8" target="_blank" class="read-more">
<i class="fab fa-medium"></i> Read on Medium
</a>
</div>
<div class="blog-card">
<img src="imbalance.jpg" alt="RAG Blog">
<h3>Embracing the Imbalance - Part 1</h3>
<p>Blog on how to handle imbalanced data in your dataset.</p>
<a href="https://medium.com/@akhil.masters21/embracing-the-imbalance-04969db08dc3" target="_blank" class="read-more">
<i class="fab fa-medium"></i> Read on Medium
</a>
</div>
<div class="blog-card">
<img src="imbalance.jpg" alt="Azure ML Blog">
<h3>Embracing the Imbalance - Part 2</h3>
<p>Continuing from the previous blog, this blog covers the second part of the imbalance problem.</p>
<a href="https://medium.com/@akhil.masters21/embracing-the-imbalance-part-2-8bdd93a210f5" target="_blank" class="read-more">
<i class="fab fa-medium"></i> Read on Medium
</a>
</div>
<div class="blog-card">
<img src="metrics.jpg" alt="Azure ML Blog">
<h3>Performance Metrics</h3>
<p>Blog on how to evaluate the performance of your model.</p>
<a href="https://medium.com/@akhil.masters21/performance-metrics-will-be-updated-4d52ba1b446d" target="_blank" class="read-more">
<i class="fab fa-medium"></i> Read on Medium
</a>
</div>
</div>
</div>
<footer>
<p>© 2025 Akhil Shekkari | <a href="https://github.com/shekkari1999" target="_blank">GitHub</a></p>
</footer>
</body>
</html>