
b.Tech Student • Machine Learning Engineer
I engineer the underlying logic of the new internet. Focused on Machine Learning, Intelligent Automations, and crafting seamless human-computer experiences.
def __init__(self, in_features, out_features, bias=True):
super(Linear, self).__init__()
self.in_features = in_features
self.out_features = out_features
self.weight = Parameter(torch.Tensor(out_features, in_features))
if bias:
self.bias = Parameter(torch.Tensor(out_features))
else:
self.register_parameter('bias', None)
def forward(self, input):
return F.linear(input, self.weight, self.bias)A decision-support dashboard and real-time train scheduling for the Kochi Metro.
import cv2
import numpy as np
def process_frame(frame, threshold=0.8):
tensor = transform(frame).unsqueeze(0)
with torch.no_grad():
outputs = model(tensor)
return filter_boxes(outputs, threshold)A Retrieval-Augmented Generation (RAG) for personal knowledge management capabilities.
function verifyTransaction(signature: string, payload: any): boolean {
const hash = crypto.createHash('sha256').update(JSON.stringify(payload)).digest('hex');
return crypto.verify('sha256', Buffer.from(payload), pubKey, Buffer.from(signature, 'hex'));
}A end-to-end platform for a digital product passport system for agricultural imports and exports.
func (c *Cache) Get(key string) (interface{}, bool) {
c.mu.RLock()
defer c.mu.RUnlock()
item, found := c.items[key]
if !found || item.Expiration > 0 && time.Now().UnixNano() > item.Expiration {
return nil, false
}
return item.Object, true
}A social platform for connecting like-minds around the world.
SELECT user_id, COUNT(*) as events, APPROX_QUANTILES(duration_ms, 100)[OFFSET(95)] as p95_duration FROM event_logs WHERE timestamp >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 HOUR) GROUP BY user_id;
An interactive productivity tracker web app.
app.use(async (ctx, next) => {
const rateLimit = await checkRateLimit(ctx.ip);
if (!rateLimit.allowed) {
ctx.status = 429;
ctx.body = 'Too Many Requests';
return;
}
await next();
});A hybrid learning platform combining AI and interactive content.
CERT-ID: AWS-ASA-73921 VALIDATION: OK ISSUER: Amazon Web Services SCORE: 920/1000
An online non-credit course authorized by DeepLearning.AI and Stanford University and offered through Coursera.
import tensorflow as tf model = tf.keras.models.Sequential([ tf.keras.layers.Dense(128, activation='relu'), tf.keras.layers.Dense(10) ])
Introduction to Internet of Things
const UI = () => (
<div className="grid">
<PremiumAesthetic />
</div>
);
export default UI;Advanced certification in React, UI/UX principles, and responsive web design.
SELECT user_id, COUNT(*) FROM analytics.events GROUP BY user_id;
Certified AI Foundations Associate