Spaces:
Sleeping
Sleeping
Adrian Gabriel commited on
Commit ·
20d014e
1
Parent(s): 1504d65
add iniitial ideas
Browse files
README.md
CHANGED
|
@@ -28,7 +28,6 @@ uv run uvicorn app:app --host 0.0.0.0 --port 8000
|
|
| 28 |
|
| 29 |
Open http://localhost:8000 in your browser.
|
| 30 |
|
| 31 |
-
|
| 32 |
---
|
| 33 |
|
| 34 |
## ✨ Features
|
|
@@ -56,6 +55,17 @@ This follows the [AI by Hand](https://www.byhand.ai/) teaching methodology. Whil
|
|
| 56 |
|
| 57 |
---
|
| 58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
## 📚 Core API Reference
|
| 60 |
|
| 61 |
Please look at the great work done by [TinyTorch](https://mlsysbook.ai/tinytorch/intro.html) for a complete API reference. Below are the currently enabled features for visualization.
|
|
|
|
| 28 |
|
| 29 |
Open http://localhost:8000 in your browser.
|
| 30 |
|
|
|
|
| 31 |
---
|
| 32 |
|
| 33 |
## ✨ Features
|
|
|
|
| 55 |
|
| 56 |
---
|
| 57 |
|
| 58 |
+
|
| 59 |
+
## 💡 Ideas to get started
|
| 60 |
+
|
| 61 |
+
- **Visualize Basic Operations:** Start simple by creating two tensors and visualizing their addition or matrix multiplication. This helps you understand how `box()` commands group operations in the UI.
|
| 62 |
+
|
| 63 |
+
- **Recreate a Textbook Example:** Take a small neural network diagram from a textbook or paper and implement it layer-by-layer to see if the data flow matches your expectation.
|
| 64 |
+
|
| 65 |
+
- **Debug a "Shape Mismatch":** Intentionally create a dimension error (like multiplying `(4,8)` by `(4,16)`) to see how the visualizer handles it versus standard Python error messages.
|
| 66 |
+
|
| 67 |
+
- **Annotate Your Math:** Use the LaTeX note feature to write down the formula $y = \sigma(Wx + b)$ next to your Linear layer visualization to connect the code to the math.
|
| 68 |
+
|
| 69 |
## 📚 Core API Reference
|
| 70 |
|
| 71 |
Please look at the great work done by [TinyTorch](https://mlsysbook.ai/tinytorch/intro.html) for a complete API reference. Below are the currently enabled features for visualization.
|