Skip to content

Commit b4e41a3

Browse files
authored
Update README.md
1 parent 432ce71 commit b4e41a3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# FIT
2+
23
A PyTorch-like machine learning library built from scratch with NumPy. Train neural networks with automatic differentiation, no dependencies beyond NumPy.
34

45
[Documentation](https://fit-ml.readthedocs.io/) (for now it's incomplete, will finish it soon c:) | [Examples](examples/)
56

67
## Why FIT?
78

89
- **Lightweight**: Only requires NumPy
9-
- **Educational**: Understand ML from first principles
1010
- **Familiar API**: PyTorch-like interface
1111
- **Production ready**: Type hints, logging, proper error handling
1212

@@ -124,5 +124,3 @@ for epoch in range(50):
124124
if epoch % 10 == 0:
125125
print(f"Epoch {epoch}, Loss: {loss.data:.4f}")
126126
```
127-
128-
Perfect for learning how neural networks work under the hood, or when you need a lightweight ML library without the complexity of PyTorch.

0 commit comments

Comments
 (0)