From 6fa4bde3d14a0ef6e83ca65009d63d3a533446ea Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Wed, 16 Jul 2025 08:32:25 -0400 Subject: [PATCH] Fix tensor module learning objectives formatting - Added bold formatting to match other modules' style - Enhanced clarity with more specific descriptors - Added 'efficiently' and 'with proper broadcasting' for precision - Now consistent with activations and other modules formatting - Improves visual hierarchy and readability in built book --- modules/source/02_tensor/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/source/02_tensor/README.md b/modules/source/02_tensor/README.md index 17747ae0..4b30ba95 100644 --- a/modules/source/02_tensor/README.md +++ b/modules/source/02_tensor/README.md @@ -11,11 +11,11 @@ Build the foundation of TinyTorch! This module implements the core Tensor class ## 🎯 Learning Objectives By the end of this module, you will: -- Understand what tensors are and why they're essential for ML -- Implement a complete Tensor class with core operations -- Handle tensor shapes, data types, and memory management -- Implement element-wise operations and reductions -- Have a solid foundation for building neural networks +- **Understand what tensors are** and why they're essential for ML +- **Implement a complete Tensor class** with core operations +- **Handle tensor shapes, data types, and memory management** efficiently +- **Implement element-wise operations and reductions** with proper broadcasting +- **Have a solid foundation** for building neural networks ## 🧠 Build → Use → Understand