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
2 changed files with 9 additions and 2 deletions

View File

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

2
mnist/requirements.txt Normal file
View File

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