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
This commit is contained in:
Vijay Janapa Reddi
2025-07-16 08:32:25 -04:00
parent 8433ede633
commit 6fa4bde3d1

View File

@@ -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