From bd742ec03ce51f7e0dcb6fda411ee2c78f36f7cb Mon Sep 17 00:00:00 2001 From: jj701 Date: Mon, 11 Dec 2023 20:45:39 -0600 Subject: [PATCH] Adding Requirements.txt --- mnist/README.md | 9 +++++++-- mnist/requirements.txt | 2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 mnist/requirements.txt diff --git a/mnist/README.md b/mnist/README.md index f254a4b1..d80c7f23 100644 --- a/mnist/README.md +++ b/mnist/README.md @@ -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: diff --git a/mnist/requirements.txt b/mnist/requirements.txt new file mode 100644 index 00000000..15e44a27 --- /dev/null +++ b/mnist/requirements.txt @@ -0,0 +1,2 @@ +mlx +numpy \ No newline at end of file