AI Engineering &Tech Excellence
Expert articles on artificial intelligence, computer vision, MLOps, and software engineering. Practical insights from real-world projects and cutting-edge research.

Featured Articles
Hamza Boughanim · 4 articles
Expert articles on artificial intelligence, computer vision, MLOps, and software engineering.
18 minIntelligent Document Processing for Insurance: Hybrid OCR, a Local LLM, and Vector Search at 91.3% Accuracy
AI Engineering · Aug 4, 2026
12 minHow LLM Inference Really Works: Prefill vs Decode
AI Engineering · Jul 28, 2026
The Agentic Loop: How AI Agents Reason and Act
AI Engineering · Jul 20, 2026
13 minWhy GPUs Power Modern AI: CUDA Cores, Tensor Cores, and the Memory Hierarchy Behind Deep Learning
MLOps · Jul 13, 2026
All Articles
8 articles
12 minEntropy in Decision Trees: From Information Theory to Overfitting Control
An expert-level exploration of entropy in decision trees, explaining how uncertainty reduction drives learning, why greedy entropy minimization leads to overfitting, and how modern constraints restore generalization.
10 minBuilding a Zero-Trust AI Backend with Argon2: Security by Design, Not by Chance
A behind-the-scenes tour of a production-grade AI API that marries GPU-resistant Argon2 passwords, Zero-Trust micro-segmentation, infra-level prompt firewalls and scoped 60-second JWTs—so attackers stealing everything still can't exceed 128 tokens.
14 minBuilding a Production RAG Pipeline: From Document Ingestion to Sub-Second Retrieval
A complete walkthrough of a production-grade Retrieval-Augmented Generation system — document ingestion, chunking strategy, embedding models, pgvector indexing with HNSW, reranking, and a FastAPI serving layer.
13 minMLOps in Practice: Deploying AI Models with Docker and FastAPI
A complete production guide to containerizing and serving machine learning models — covering FastAPI model servers, multi-stage Docker builds, GPU support, health checks, Docker Compose orchestration, and a CI/CD pipeline with GitHub Actions.
13 minWhy GPUs Power Modern AI: CUDA Cores, Tensor Cores, and the Memory Hierarchy Behind Deep Learning
An engineer's guide to the hardware behind deep learning — why matrix multiplication chose GPUs, how CUDA cores and Tensor Cores actually differ, why VRAM bandwidth (not just size) decides your training speed, and how mixed precision and parallelism let modern models scale past a trillion parameters.
The Agentic Loop: How AI Agents Reason and Act
The perceive-reason-act-remember loop behind Claude Code and every AI agent — explained with a working Python example and design patterns.
12 minHow LLM Inference Really Works: Prefill vs Decode
An expert-level breakdown of how LLM inference actually works under the hood — why prefill and decode put opposite pressure on a GPU, what TTFT and TPOT really measure, and how continuous batching and PagedAttention turn idle GPU cycles into served requests.
18 minIntelligent Document Processing for Insurance: Hybrid OCR, a Local LLM, and Vector Search at 91.3% Accuracy
A full engineering breakdown of a production document-AI system for the insurance sector — dual-engine Tesseract/EasyOCR fusion, Phi-3 running locally through Ollama for classification and NER, ChromaDB semantic search over HNSW, and MinIO storage. Architecture, benchmarks on 760 documents, GDPR design, and the limitations nobody publishes.