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

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
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

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


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

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

Finetune LLM( from openai) using LangChain ( for beginners)
Large language models (LLMs) are emerging as a transformative technology, enabling developers to build applications that they previously...
Mr. Data Bugger
Aug 24, 20232 min read
104 views
0 comments

Mlflow: ML model lifecycle management
MLflow is an open source platform to manage the ML lifecycle, including experimentation, reproducibility, deployment, and a central model...
Mr. Data Bugger
Aug 22, 20212 min read
220 views
0 comments

ML- Ops: Drift Detection in Data & Iterative model training using python's Multi-flow package
we develop a ML model and deploy but who takes care of model monitoring and re-training. Unless we do it, ur project is no more than a...
Mr. Data Bugger
Aug 18, 20212 min read
396 views
0 comments
How to save a data variable in Python using pickle library
# import pickle library import pickle # take user input to take the amount of data number_of_data = int(input('Enter the number of data :...
Mr. Data Bugger
Jun 7, 20211 min read
16 views
0 comments
Auto Reload Python package after making changes in it.
IPython extension to reload modules before executing user code. autoreload reloads modules automatically before entering the execution of...
Mr. Data Bugger
Jun 7, 20211 min read
27 views
0 comments


Deep Learning with H2O in Python
H2O.ai is focused on bringing AI to businesses through software. Its flagship product is H2O, the leading open source platform that makes...
Mr. Data Bugger
Jun 5, 20212 min read
76 views
0 comments
Sentiment Analysis using NLTK and Sklearn in Python
Data can be downloaded from - http://www.cs.cornell.edu/people/pabo/movie-review-data/review_polarity.tar.gz Step 1 - loading required...
Mr. Data Bugger
Jun 5, 20212 min read
81 views
0 comments
bottom of page