21 UG • Image Denoising @IITGoaofficial • Research Intern @IIIT_Hyderabad • MLOps LLMs Anything Tech

Joined June 2025
277 Photos and videos
That's a dangerous amount of power sitting in a dropdown menu. Time to build a $1B Saas with no mistakes.
1
7
147
Guys, I paid for X Premium more than 18 hours ago and it still hasn't activated. The support system is almost entirely automated and I can't figure out how to contact an actual human. Has anyone dealt with this before? What should I do?
4
172
Top: benchmark Bottom: modification I went into the meeting today with 3 different ideas to solve the problem. Two got destroyed almost immediately. Only one survived. Now the entire thing depends on whether this modification actually works well in experiments or not.
1
18
552
My guide figured out a research direction, so today started with revisiting the fundamentals again. Spent the morning studying Gradient Descent, Backpropagation, Vanishing Gradients, and Exploding Gradient problems. Now I still have 4 more articles to go through.
3
73
1,611
Is there some universal Linux command to download files from literally everywhere? Every repository has its own weird way of downloading things. Sometimes wget works, sometimes curl, sometimes gdown, sometimes git clone, sometimes nothing works and I end up asking ChatGPT again.
3
18
724
Back in the lab after a very long time. Let's get some work done.
2
1
65
1,441
I just built the most generic resume project possible - a chatbot. And yes, I copied most of it from a LangGraph tutorial ☠️ But honestly, I'm starting to understand the flow properly now, and that's probably more important than pretending I built everything from scratch.
6
224
Spent 15 minutes building a LangGraph workflow that drafts tweets. The first output looked so on-point, I'm convinced a good chunk of the replies I get are actually from similar bots. This thread? Drafted by the same graph, still manually posted because I'm alive.
1
11
394
Looks like I am building it. Might be the last time I am posting something unpolished.
Built 2 more small workflows on LangGraph this morning. The framework feels surprisingly intuitive once you understand the state flow properly. Before jumping into advanced agentic systems, I'm actually thinking of building something practical first. Maybe a workflow for writing posts on X. Like starting with a rough thought in mind, then passing it through multiple LLM calls for refinement, tone adjustment, engagement optimization, and polishing before generating the final post. Sounds unnecessarily fun to build.
1
5
202
Built 2 more small workflows on LangGraph this morning. The framework feels surprisingly intuitive once you understand the state flow properly. Before jumping into advanced agentic systems, I'm actually thinking of building something practical first. Maybe a workflow for writing posts on X. Like starting with a rough thought in mind, then passing it through multiple LLM calls for refinement, tone adjustment, engagement optimization, and polishing before generating the final post. Sounds unnecessarily fun to build.
4
15
650
Started learning LangGraph recently and I'm genuinely surprised by how intuitive it feels. So far I've only built a few simple sequential workflows just to get comfortable with the syntax and state handling. Definitely overkill for the tasks I used it for, but it's helping me understand the framework properly. Planning to move into more complex agentic workflows in the next 2-3 days. Let's see how deep this rabbit hole goes.
5
1
26
1,040
Spent an entire day reading prompt engineering articles and watching tutorials only to realize I already use most of these techniques instinctively, I just never knew the fancy names for them. What's even funnier is that half the advice already feels outdated. Models have become so much better that rigid prompting matters way less now. Context, clarity, and actual thinking seem far more important than memorizing prompt frameworks.
2
2
17
667
What exactly is this "Forward Deployed Engineer" role everyone keeps talking about? From what I understand, it feels like a mix of software engineer, solutions architect, AI engineer, consultant, and sometimes even product engineer. But why is there suddenly so much hype around it? How technically solid are these roles actually, and what skills do companies expect beyond the buzzwords.
1
8
987
So the main difference between ADC and SDC in Product Quantization is surprisingly simple. In SDC, both the database vectors and the query vector are quantized. In ADC, only the database vectors are quantized while the query stays in full precision. And interestingly, ADC perfoms better in practise. Makes sense though. Quantizing the query introduces additional quantization error and makes distance distortion. Since the query itself is tiny compared to the database, compressing it barely saves memory anyway.
8
273
'index_factory' in FAISS is honestly one of the cleanest index construction utilities I've seen for vector search systems. It lets you build complex composite indexes using a single string description instead of manually wiring every component together. These two snippets below are functionally doing the same thing: d = wb.shape[1] nlist = 256 m = 32 nbits = 8 opq = faiss.OPQMatrix(d, m) vecs = faiss.IndexFlatL2(d) sub_index = faiss.IndexIVFPQ(vecs, d, nlist, m, nbits) q = faiss.IndexPreTransform(opq, sub_index) index = faiss.IndexRefineFlat(q) index.train(wb[:50000]) index.add(wb[:50000]) And this entire pipeline can be compressed into: index_f = faiss.index_factory(d, "OPQ32,IVF256,PQ32,RFlat") index_f.train(wb[:50000]) index_f.add(wb[:50000]) Absolutely wild abstraction. Once you understand OPQ, IVF, PQ, and refinement stages individually, this feels incredibly elegant.
13
448
This lecture has been around for almost 6 years now and Pinecone still hasn't open sourced their single-stage filtering approach. I'm genuinely curious how they're doing it internally. Because naively, if you apply metadata filtering first and then pass only filtered vectors to the ANN search, wouldn't that imply dynamically building or traversing filtered indexes for every query? That sounds expensive at scale. Makes me wonder how much of the filtering is integrated directly into the ANN traversal itself versus done as a pre/post-processing step. Retrieval systems are way more complicated under the hood than they initially look.
8
296
Couldn't sleep last night. Got off the bed and somehow ended up reading about HNSW instead. What's interesting is that HNSW builds on ideas from probabilistic skip lists and NSW graphs. Instead of searching every node, it creates hierarchical graph layers where the top layers help you jump quickly across the space, and the lower layers refine the search locally. Feels surprisingly intuitive once you visualize it properly.
4
3
59
2,008
I'm supposed to give two presentations on my 6-month internship for semester grading. And I already know how it's going to go. "What language did you use?" "What model did you train?" "What type of CNN?" "How much accuracy?" That's it. Nobody is going to ask why the architecture works, what tradeoffs exist, what failed during experimentation, or what the actual research problem even is. I can spend months understanding fundamentals, papers, optimization, systems, and implementation details, but grading here has very little to do with depth sometimes. Maybe in my next life I'll become a teacher's pet. Sounds like a much easier optimization problem.
3
17
513
Quantization is everywhere these days, especially with edge AI and LLM deployment becoming more common. Probably a good time to properly understand what's actually happening under the hood instead of just calling load_in_4bit=True and moving on.
2
40
8,707
Starting the day with FAISS. I'm slowly starting to love this library. Everything around retrieval, indexing, and similarity search just feels so much cleaner and easier with FAISS.
2
3
58
1,394