samples: tensorflow: remove requirements.txt from magic wand sample

Removes the requirements.txt from the training directory of the
magic wand sample as it is causing issues in CI. Updates README.md
to explicitly state the Python packages listed in requirements.txt.

Signed-off-by: Lauren Murphy <lauren.murphy@intel.com>
This commit is contained in:
Lauren Murphy 2021-05-21 13:36:29 -05:00 committed by Anas Nashif
commit f492636aa9
2 changed files with 1 additions and 3 deletions

View file

@ -47,7 +47,7 @@ If you'd prefer to run the scripts locally, use the following instructions.
Use the following command to install the required dependencies:
```shell
pip install -r requirements.txt
pip install numpy==1.16.2 tensorflow==2.0.0-beta1
```
There are two ways to train the model:

View file

@ -1,2 +0,0 @@
numpy==1.16.2
tensorflow==2.0.0-beta1