Sadman Kabir Soumik
open-menu closeme
Home
artificial-intelligence
software-engineering
cloud-computing
beyond-code
about
linkedin github rss
  • Memory Systems in Agentic AI: Procedural, Semantic, and Episodic Memory

    calendar Aug 12, 2026 · 19 min read · artificial intelligence agentic ai system design  ·
    Share on: twitter facebook linkedin copy
    Memory Systems in Agentic AI: Procedural, Semantic, and Episodic Memory

    Large Language Models are good at understanding text and generating answers. But there is an important problem. By default, an LLM does not truly remember everything that …

    Read More
  • How vLLM Works for Serving Large Language Models

    calendar May 15, 2026 · 17 min read · artificial intelligence large language models software engineering system design  ·
    Share on: twitter facebook linkedin copy
    How vLLM Works for Serving Large Language Models

    You have downloaded an open source Large Language Model. Maybe it is Llama, Qwen, Gemma, or another model. You load it on an NVIDIA GPU and send a prompt: 1What is the …

    Read More
  • How to Make LLM Inference Faster

    calendar Apr 12, 2026 · 11 min read · artificial intelligence large language models system design  ·
    Share on: twitter facebook linkedin copy
    How to Make LLM Inference Faster

    Running a Large Language Model is easy. Running it fast, at scale, and without wasting expensive GPUs is much harder. Imagine you deploy an open source LLM on an NVIDIA …

    Read More
  • MCP Servers Explained - Connect Your AI Tools to Everything

    calendar Jan 11, 2026 · 8 min read · artificial-intelligence mcp ai-tools developer-tools  ·
    Share on: twitter facebook linkedin copy
    MCP Servers Explained - Connect Your AI Tools to Everything

    Author: Sadman Kabir Soumik What is MCP? MCP stands for Model Context Protocol. It is an open standard created by Anthropic in November 2024. Think of it as a universal …

    Read More
  • Types of LLM Architectures

    calendar Mar 18, 2025 · 6 min read · machine learning data science artificial-intelligence nlp system-design  ·
    Share on: twitter facebook linkedin copy
    Types of LLM Architectures

    Let's first break it down: what exactly are large language models (LLMs), why do we call them 'large,' and how are they different from other types of language models? An …

    Read More
  • How Generative AI Works - ChatGPT, Midjourney, and Dall-E Demystified

    calendar Mar 7, 2023 · 5 min read · artificial-intelligence generative-ai generative-ai-models  ·
    Share on: twitter facebook linkedin copy
    How Generative AI Works - ChatGPT, Midjourney, and Dall-E Demystified

    Author: Sadman Kabir Soumik What is Generative AI? Generative AI is a subset of artificial intelligence that creates completely new content, like images, videos, music, …

    Read More
  • Building an MLOps Pipeline with Apache Airflow (Part 1)

    calendar Feb 17, 2023 · 7 min read · machine learning MLOps Airflow  ·
    Share on: twitter facebook linkedin copy
    Building an MLOps Pipeline with Apache Airflow (Part 1)

    Author: Sadman Kabir Soumik Let's first understand what's MLOps. What is MLOps? MLOps (Machine Learning Operations) is a set of practices and tools used to manage the …

    Read More
  • From RNN to Transformers (Without Math Jargon)

    calendar Jan 30, 2023 · 13 min read · machine learning data science NLP algorithm  ·
    Share on: twitter facebook linkedin copy
    From RNN to Transformers (Without Math Jargon)

    Transformer-based models are a types of neural network architecture that uses self-attention mechanisms to process input data. They were introduced in the paper …

    Read More
  • How to Achieve Perfect Selfie Segmentation and Background Removal

    calendar Jan 16, 2023 · 6 min read · project-tutorial computer vision machine learning  ·
    Share on: twitter facebook linkedin copy
    How to Achieve Perfect Selfie Segmentation and Background Removal

    Project Goal The project aims to perform image segmentation on selfie images, see how we can blur the image's background, and even replace the background with some other …

    Read More
  • Ace Your Data Science Interview - Top Questions With Answers

    calendar Nov 15, 2022 · 99 min read · deep learning machine learning data science  ·
    Share on: twitter facebook linkedin copy
    Ace Your Data Science Interview - Top Questions With Answers

    Can you explain the bias-variance trade-off and how it relates to model performance? Machine learning and statistics have a fundamental concept that requires balancing …

    Read More
  • Understanding Top 10 Classical Machine Learning Algorithms

    calendar Oct 26, 2022 · 42 min read · machine learning data science algorithms  ·
    Share on: twitter facebook linkedin copy
    Understanding Top 10 Classical Machine Learning Algorithms

    Before jumping into Deep Learning, one must know the classical/traditional Machine Learning algorithms, because understanding traditional machine learning algorithms can …

    Read More
  • ML Model Compression Techniques - Reducing Size and Improving Performance

    calendar Oct 10, 2022 · 6 min read · mlops optimization machine learning data science  ·
    Share on: twitter facebook linkedin copy
    ML Model Compression Techniques - Reducing Size and Improving Performance

    There are 4 main approaches you can consider for model compression. They are: Quantization Pruning Knowledge Distillation Low-Rank Factorization Quantization Quantization …

    Read More
  • Multi-class Text Classification Using Apache Spark MLlib

    calendar May 24, 2022 · 7 min read · project-tutorial NLP spark machine learning  ·
    Share on: twitter facebook linkedin copy
    Multi-class Text Classification Using Apache Spark MLlib

    Spark MLlib MLlib is a library for machine learning in Spark that aims to make it easy to use and scalable for practical applications. It includes tools for common ML …

    Read More
  • Keyphrase Extraction with BERT Embeddings and Part-Of-Speech Patterns

    calendar May 19, 2022 · 10 min read · project-tutorial programming NLP machine learning python  ·
    Share on: twitter facebook linkedin copy
    Keyphrase Extraction with BERT Embeddings and Part-Of-Speech Patterns

    Keyphrases are important pieces of information that can be extracted from text documents. These are words or phrases that summarize the main ideas or topics of a text, …

    Read More
  • Understanding the Role of Data Normalization and Standardization in Machine Learning

    calendar Mar 12, 2022 · 2 min read · data science statistics machine learning  ·
    Share on: twitter facebook linkedin copy
    Understanding the Role of Data Normalization and Standardization in Machine Learning

    Why do we scale features? For machine learning, every dataset does not require feature scaling, and it is only needed when features have different ranges. For example, …

    Read More
  • One-Stage vs Two-Stage Instance Segmentation

    calendar Mar 4, 2022 · 5 min read · image segmentation machine learning computer vision data science  ·
    Share on: twitter facebook linkedin copy
    One-Stage vs Two-Stage Instance Segmentation

    In computer vision, image segmentation refers to the process of dividing an image into distinct regions or segments, each corresponding to a different object or …

    Read More
  • Machine Learning Practices - Research vs Production

    calendar Jan 10, 2022 · 5 min read · machine learning deep learning data science  ·
    Share on: twitter facebook linkedin copy
    Machine Learning Practices - Research vs Production

    There are several key differences between using machine learning for research and using it for production. One of the main differences is the focus of the work. Machine …

    Read More
  • Writing Machine Learning Model - PyTorch vs. TF-Keras

    calendar Dec 9, 2021 · 4 min read · machine learning deep learning data science  ·
    Share on: twitter facebook linkedin copy
    Writing Machine Learning Model - PyTorch vs. TF-Keras

    PyTorch and Keras are both open-source deep learning frameworks, but they have some significant differences. PyTorch is a low-level framework that allows you to define …

    Read More
  • GPT-3 by OpenAI - The Largest and Most Advanced Language Model Ever Created

    calendar Nov 20, 2021 · 5 min read · machine learning NLP data science  ·
    Share on: twitter facebook linkedin copy
    GPT-3 by OpenAI - The Largest and Most Advanced Language Model Ever Created

    Author: Sadman Kabir Soumik GPT-3, or Generative Pretrained Transformer 3, is a state-of-the-art language model developed by OpenAI. It has been trained on a massive …

    Read More
  • Vanishing Gradient Problem and How to Fix it

    calendar Oct 24, 2021 · 3 min read · deep learning machine learning data science  ·
    Share on: twitter facebook linkedin copy
    Vanishing Gradient Problem and How to Fix it

    What is Vanishing Gradient Problem Neural networks are trained using stochastic gradient descent. This involves first calculating the prediction error made by the model …

    Read More
    • ««
    • «
    • 1
    • 2
    • »
    • »»

SK Soumik

Artificial intelligence | Data Science

Categories

MACHINE-LEARNING 25 SOFTWARE-ENGINEERING 19 ALGORITHM-DESIGN 10 SYSTEM-DESIGN 10 PROJECT 6 ARTIFICIAL-INTELLIGENCE 3 CLOUD-COMPUTING 2 NON-TECHNICAL 2 OPERATING-SYSTEM 2 BUSINESS 1

Series

ML 18 DSA 6 PROJECT 6 SOFTWARE-ENGINEERING 4 PROBLEM-SOLVING 3 AI-TOOLS 1 AIRFLOW 1 DJANGO 1 GENERATIVE-AI 1 NLP 1

Tags

MACHINE-LEARNING 22 DATA-SCIENCE 16 PROGRAMMING 12 PYTHON 10 ALGORITHMS 8 DEEP-LEARNING 8 NLP 8 SOFTWARE-ENGINEERING 8 SYSTEM-DESIGN 8 ARTIFICIAL-INTELLIGENCE 6 PROBLEM-SOLVING 6 PROJECT-TUTORIAL 6 ALGORITHM 5 LEETCODE 5
All Tags
AGENTIC-AI1 AI-TOOLS1 AIRFLOW1 ALGORITHM5 ALGORITHMS8 ARTIFICIAL-INTELLIGENCE6 AUTOMATION1 BOT-DEVELOPMENT1 BUSINESS1 CLOUD2 COMPUTER-VISION2 DATA-SCIENCE16 DEEP-LEARNING8 DEVELOPER-TOOLS1 DJANGO1 ELASTICSEARCH1 GENERATIVE-AI1 GENERATIVE-AI-MODELS1 GOOGLE-CLOUD1 IMAGE-SEGMENTATION1 INDEX1 LARGE-LANGUAGE-MODELS2 LEETCODE5 LIFE-HACK1 LINUX2 MACHINE-LEARNING22 MATH1 MCP1 MLOPS2 NLP8 OPERATING-SYSTEM1 OPTIMIZATION1 PROBLEM-SOLVING6 PRODUCTIVITY1 PROGRAMMING12 PROJECT-TUTORIAL6 PROXY1 PYTHON10 SOFTWARE-ENGINEERING8 SPARK1 START-UP1 STATISTICS1 SYSTEM-DESIGN8 WEB-DEVELOPMENT1 WEB-SCRAPING1
[A~Z][0~9]
Copyright © 2022, Sadman Kabir Soumik

Copyright  COPYRIGHT © 2022, SADMAN KABIR SOUMIK. All Rights Reserved

to-top