Merge pull request #73 from jj701/mnist-requirements-txt

Adding Requirements.txt to the Mnist Example
This commit is contained in:
Awni Hannun 2023-12-11 19:37:53 -08:00 committed by GitHub
commit 13f1142eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,12 @@
# MNIST
This example shows how to run some simple models on MNIST. The only
dependency is MLX.
This example shows how to run some simple models on MNIST.
Install the dependencies:
```
pip install -r requirements.txt
```
Run the example with:

2
mnist/requirements.txt Normal file
View File

@ -0,0 +1,2 @@
mlx
numpy