From 6a938539b79c114d604b381e415251f917bf74d4 Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:11:45 -0700 Subject: [PATCH] docs: fix 404 links for beginner-friendly AI examples The example table in examples/README.md used repo-relative paths that 404 when the README is viewed outside the examples/ directory (e.g. from the issue or the repo root). Point them at absolute GitHub blob URLs so they resolve everywhere. Fixes #645 --- examples/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/README.md b/examples/README.md index e74a3be7..02fbee49 100644 --- a/examples/README.md +++ b/examples/README.md @@ -6,10 +6,10 @@ Welcome! This directory contains simple, standalone examples to help you get sta | Example | Description | Difficulty | Prerequisites | |---------|-------------|------------|---------------| -| [Hello AI World](./01-hello-ai-world.py) | Your first AI program - simple pattern recognition | ⭐ Beginner | Python basics | -| [Simple Neural Network](./02-simple-neural-network.py) | Build a neural network from scratch | ⭐⭐ Beginner+ | Python, basic math | -| [Image Classifier](./03-image-classifier.ipynb) | Classify images with a pre-trained model | ⭐⭐ Beginner+ | Python, numpy | -| [Text Sentiment](./04-text-sentiment.py) | Analyze text sentiment (positive/negative) | ⭐⭐ Beginner+ | Python | +| [Hello AI World](https://github.com/microsoft/AI-For-Beginners/blob/main/examples/01-hello-ai-world.py) | Your first AI program - simple pattern recognition | ⭐ Beginner | Python basics | +| [Simple Neural Network](https://github.com/microsoft/AI-For-Beginners/blob/main/examples/02-simple-neural-network.py) | Build a neural network from scratch | ⭐⭐ Beginner+ | Python, basic math | +| [Image Classifier](https://github.com/microsoft/AI-For-Beginners/blob/main/examples/03-image-classifier.ipynb) | Classify images with a pre-trained model | ⭐⭐ Beginner+ | Python, numpy | +| [Text Sentiment](https://github.com/microsoft/AI-For-Beginners/blob/main/examples/04-text-sentiment.py) | Analyze text sentiment (positive/negative) | ⭐⭐ Beginner+ | Python | ## 🚀 Getting Started