Topics

  • AI Tools (2)
  • AutoHotkey (1)
  • Automation (3)
  • Build Your Own LLM (5)
  • Charts & Dashboards (2)
  • Deep Learning (1)
  • Essbase (3)
  • Excel Formulas (11)
  • Excel VBA (104)
  • Formula Combos (5)
  • Fun Facts (8)
  • Google Workspace (1)
  • History (3)
  • Internet & Browser (2)
  • Java (2)
  • JavaScript (2)
  • LLMs (4)
  • Machine Learning (5)
  • Office Scripts (1)
  • Oracle EPM Cloud (1)
  • Oracle Smart View (3)
  • Outlook (4)
  • Phone (2)
  • Power Automate (2)
  • Power Query & Pivots (3)
  • PowerPoint (3)
  • PowerShell (1)
  • Productivity (3)
  • Prompt Engineering (1)
  • Python (4)
  • Python Automation (2)
  • R (2)
  • RAG & Agents (2)
  • Rust (1)
  • SAP (6)
  • SAP GUI Scripting (3)
  • Science (3)
  • Security & Privacy (2)
  • SQL (3)
  • Tech Tips (1)
  • Windows (3)
  • Word (3)

Recent posts

  • Essbase Explained: Cubes, Dimensions and Why Finance Teams Love It
  • 5 Ways to Find the Last Row in Excel VBA (and When Each One Fails)
  • SAP SE16N and SQVI: Pull Table Data Without ABAP
  • Automate SAP from Excel: Run a Report and Export It with SAP GUI Scripting
  • LET and LAMBDA: Write Your Own Excel Functions (No VBA)
  • Why Do We Have Leap Years? (And Why 1900 Was Not One)

AJ's Techie & Wacky World

Excel, SAP, Oracle & automation tips — plus wacky facts

Menu

Skip to content
  • Excel
    • Charts & Dashboards
    • Excel Formulas
    • Excel VBA
    • Formula Combos
    • Power Query & Pivots
    • Excel VBA Course
  • Office
    • Google Workspace
    • Outlook
    • PowerPoint
    • Word
  • Coding
    • Java
    • JavaScript
    • PowerShell
    • Python
    • R
    • Rust
    • SQL
  • AI & ML
    • AI Tools
    • Build Your Own LLM
    • Deep Learning
    • LLMs
    • Machine Learning
    • Prompt Engineering
    • RAG & Agents
    • Build Your Own LLM Course
  • SAP & Oracle
    • Essbase
    • Oracle EPM Cloud
    • Oracle Smart View
    • SAP
  • Automation
    • AutoHotkey
    • Office Scripts
    • Power Automate
    • Python Automation
    • SAP GUI Scripting
  • Tech Tips
    • Internet & Browser
    • Phone
    • Productivity
    • Security & Privacy
    • Windows
  • Wacky World
    • Fun Facts
    • History
    • Science
    • All Wacky Facts
  • Tools
    • VBA Playground
    • Formula Lab
    • VBA Bug Hunt
    • Macro Recorder
    • SQL Playground
    • Date & Workday Calculator
    • Excel Shortcut Trainer
    • VBA Quiz
    • Formula Explainer
    • EMI & SIP Calculator
    • Regex Tester
    • CSV to SQL Converter
    • VBA Code Formatter
    • Office Shortcut Finder
  • About
  • Projects

Category Archives: AI & ML

Artificial intelligence explained by building it: machine learning, neural networks, LLMs, RAG and agents — plus how to build your own language model.

Build Your Own LLM, Lesson 5: Self-Attention From Scratch

1 Dec 2025 · Build Your Own LLM · 4 min read

Build Your Own LLM, Lesson 5: Self-Attention From Scratch

Understand and code the attention mechanism behind transformers: queries, keys, values, the causal mask and softmax — first with NumPy on four tokens, then…

Read article →
1 December 2025 by Atul Vij Build Your Own LLM Leave a comment

Build Your Own LLM, Lesson 4: Embeddings and Your First Neural Language Model

17 Nov 2025 · Build Your Own LLM · 4 min read

Build Your Own LLM, Lesson 4: Embeddings and Your First Neural Language Model

Rebuild the bigram model as a neural network in PyTorch, train it with gradient descent, and add embeddings — the vectors that let language…

Read article →
17 November 2025 by Atul Vij Build Your Own LLM Leave a comment

Build Your Own LLM, Lesson 3: A Language Model Made of Counting

3 Nov 2025 · Build Your Own LLM · 3 min read

Build Your Own LLM, Lesson 3: A Language Model Made of Counting

Build a bigram language model with plain Python dictionaries, generate text from it, and measure it with loss — the same number every LLM…

Read article →
3 November 2025 by Atul Vij Build Your Own LLM Leave a comment

Build Your Own LLM, Lesson 2: Write a BPE Tokenizer in Python

20 Oct 2025 · Build Your Own LLM · 5 min read

Build Your Own LLM, Lesson 2: Write a BPE Tokenizer in Python

Build the byte-pair encoding tokenizer used by GPT-style models from scratch in about 40 lines of Python: training merges, encoding, decoding and why the…

Read article →
20 October 2025 by Atul Vij Build Your Own LLM Leave a comment

Build Your Own LLM, Lesson 1: How a Language Model Actually Works

6 Oct 2025 · Build Your Own LLM · 3 min read

Build Your Own LLM, Lesson 1: How a Language Model Actually Works

A plain-English tour of what happens inside ChatGPT-style models: tokens, probabilities, training on next-token prediction, and why a model that only guesses the next…

Read article →
6 October 2025 by Atul Vij Build Your Own LLM Leave a comment

Build a RAG Chatbot That Answers From Your Own PDFs and Excel Files (Complete Guide)

4 Mar 2025 · RAG & Agents · 6 min read

Build a RAG Chatbot That Answers From Your Own PDFs and Excel Files (Complete Guide)

Step-by-step guide to retrieval-augmented generation in Python: load PDFs and Excel sheets, chunk them, create embeddings, search by meaning, and answer with a local…

Read article →
4 March 2025 by Atul Vij RAG & Agents

AI Agents and Tool Calling Explained (With a 20-Line Example)

12 Nov 2024 · RAG & Agents · 2 min read

AI Agents and Tool Calling Explained (With a 20-Line Example)

What people mean by AI agents: a model in a loop that can call tools such as search, a calculator or your database. How…

Read article →
12 November 2024 by Atul Vij RAG & Agents

LoRA Fine-Tuning Explained: Teach an LLM New Tricks on One GPU

13 Aug 2024 · LLMs · 3 min read

LoRA Fine-Tuning Explained: Teach an LLM New Tricks on One GPU

How LoRA fine-tuning works, why it trains less than 1% of a model’s parameters, when fine-tuning beats prompting or RAG, and a minimal Hugging…

Read article →
13 August 2024 by Atul Vij LLMs

Using AI to Write Excel Formulas: A Safe 5-Step Checklist

25 Jun 2024 · AI Tools · 2 min read

Using AI to Write Excel Formulas: A Safe 5-Step Checklist

AI assistants are great at Excel formulas — when you give them the right details and test the result. A five-step checklist with an…

Read article →
25 June 2024 by Atul Vij AI Tools

Run an LLM on Your Own Laptop with Ollama (Private, Free, Offline)

19 Mar 2024 · LLMs · 2 min read

Run an LLM on Your Own Laptop with Ollama (Private, Free, Offline)

Install Ollama, run open models like Llama and Qwen locally, call them from Python and Excel-friendly scripts, and create a custom model with a…

Read article →
19 March 2024 by Atul Vij LLMs

Why AI Chatbots Make Things Up (and 6 Ways to Catch It)

6 Feb 2024 · LLMs · 2 min read

Why AI Chatbots Make Things Up (and 6 Ways to Catch It)

LLM "hallucinations" explained simply: why a next-token predictor can sound confident and still be wrong, and six practical habits to catch fabricated facts, formulas…

Read article →
6 February 2024 by Atul Vij LLMs

Temperature and Top-p Explained: Why the Same Prompt Gives Different Answers

19 Sep 2023 · LLMs · 2 min read

Temperature and Top-p Explained: Why the Same Prompt Gives Different Answers

What the temperature and top-p settings in AI models actually do, with a worked numeric example, and which values to use for code, data…

Read article →
19 September 2023 by Atul Vij LLMs

Post navigation

← Older posts
Proudly powered by WordPress | Theme: fiore by Caroline Moore.
© 2026 Atul Vij · AJ’s Techie & Wacky World
AboutProjectsFree ToolsContactPrivacyDisclaimerGitHub
Did you know?

Why? →