top of page
Search

Model Distillation: Simplifying AI Models Without Losing Accuracy
Model compression refers to techniques that reduce the size and computational cost of deep learning models while maintaining accuracy....
Mr. Data Bugger
Feb 224 min read
8 views
0 comments

Building a Simple Chatbot Using LangGraph and LangChain
Introduction In this blog, we'll explore how to build a chatbot using LangGraph  and LangChain  with Groq's Gemma2-9b-it model . We'll...
Mr. Data Bugger
Feb 223 min read
14 views
0 comments

Checking Unique Strings and String Permutations in Python
Introduction String manipulation is a fundamental concept in programming, often requiring checks for uniqueness and permutations. In this...
Mr. Data Bugger
Feb 191 min read
2 views
0 comments


Explainable Reinforcement Learning (XRL): A Literature Survey
Introduction Reinforcement Learning (RL) has shown significant advancements in solving complex tasks, but the lack of interpretability...
Mr. Data Bugger
Feb 192 min read
5 views
0 comments
Finding the Greatest Common Divisor of Two Strings Without GCD
Problem Statement Given two strings str1Â and str2, we need to find the largest string XÂ such that both str1Â and str2Â are formed by...
Mr. Data Bugger
Feb 182 min read
1 view
0 comments

Evaluating Text-to-SQL LLMs: Key Metrics and Their Significance
Text-to-SQL LLMs bridge the gap between natural language queries and structured databases by translating user queries into SQL...
Mr. Data Bugger
Feb 173 min read
14 views
0 comments

Understanding LangChain: A Deep Dive into LLM Chaining in Chatbot with OOP Concepts
Introduction LangChain is a powerful framework that helps developers integrate Large Language Models (LLMs) into applications with...
Mr. Data Bugger
Feb 132 min read
8 views
0 comments


Building an Multi-Source Search Engine with LangChain Agents
Overview In today’s world of vast digital information, having an efficient search engine that integrates multiple sources is crucial....
Mr. Data Bugger
Feb 132 min read
11 views
0 comments


Optimizing Array Computation: Product of Array Except Self
Introduction In this blog, we will explore an efficient algorithm to compute the product of an array except for the current element,...
Mr. Data Bugger
Feb 132 min read
2 views
0 comments


Merging Strings Alternately in Python: A Two-Pointer Approach
String manipulation is a common problem in programming, often requiring efficient solutions. One such problem is merging two strings by...
Mr. Data Bugger
Feb 122 min read
2 views
0 comments


The Two-Pointer Strategy in Algorithms
Introduction The two-pointer strategy is a powerful technique used in various algorithmic problems, especially those related to arrays...
Mr. Data Bugger
Feb 122 min read
9 views
0 comments

Enhancing AI Knowledge Retrieval with LangChain, Deepseek-r1-70b( Groq) and FAISS
In the evolving landscape of artificial intelligence, retrieving relevant information from vast sources has become a crucial aspect of...
Mr. Data Bugger
Feb 102 min read
33 views
0 comments


Efficiently Finding Duplicates in a List Using Python
Finding duplicates in a list is a common problem in programming. A straightforward but inefficient way is to use nested loops, resulting...
Mr. Data Bugger
Feb 83 min read
29 views
0 comments


Optimizing Pair Search in Lists: A Hash Map Approach
Introduction When working with lists in Python, a common problem is finding two numbers that sum up to a given target. A naive approach...
Mr. Data Bugger
Feb 73 min read
4 views
0 comments

Getting Started with LangSmith and LangChain: A Quickest Demo
Introduction Building AI applications often involves experimenting, debugging, and optimizing responses. LangSmith  helps developers...
Mr. Data Bugger
Feb 52 min read
18 views
0 comments


LLM & Agentic AI : must know terms/tools
LangChain is a framework for developing applications powered by large language models (LLMs). https://github.com/langchain-ai/langchain...
Mr. Data Bugger
Feb 32 min read
24 views
0 comments

Design Patterns in Agentic AI
Agentic AI design patterns are established strategies that guide the development of AI systems capable of autonomous decision-making and...
Mr. Data Bugger
Feb 12 min read
43 views
0 comments

From Data Scientist to Full-Stack Developer: Mastering UI, APIs, and Docker for Scalable Solutions
I know R, Python, Tensorflow, Pytorch etc. I know enough of timeseries, clustering, classificaiton, RL, deep learning, diffusion models...
Mr. Data Bugger
Jan 99 min read
8 views
0 comments

Unleashing AI's Potential: Exploring LangChain and Its Transformative Concepts!
1- What is Langchain ? LangChain is a framework for developing applications powered by large language models (LLMs). LangChain...
Mr. Data Bugger
Jan 913 min read
40 views
0 comments

All you need to know about LangSmith Evaluations for LLM apps. Part 1
When it comes to LLM evaluations, There are 4 pieces- There is a dataset for evaluation like question answer pair (1), there is...
Mr. Data Bugger
Sep 3, 20242 min read
15 views
0 comments
bottom of page