From 52d58e3112dcbe3e0b3f872aca5c3768288da7e7 Mon Sep 17 00:00:00 2001 From: Heiko J Schick Date: Wed, 21 Oct 2020 21:31:59 +0200 Subject: [PATCH] Added missing packages, required for LeNet-5 architecture --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b8101cf..74fbbbe 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,8 @@ $(VENV_NAME)/bin/activate: ${PYTHON} -m pip install keras_vggface ${PYTHON} -m pip install pylint ${PYTHON} -m pip install mypy + ${PYTHON} -m pip install panadas + ${PYTHON} -m pip install sklearn touch $(VENV_NAME)/bin/activate linear_regression: env @@ -57,4 +59,5 @@ clean: rm -rf images rm -f images.tar.gz rm -f fine_tune.h5 - rm -rf .mypy_cache \ No newline at end of file + rm -rf .mypy_cache + rm -rf *.gz \ No newline at end of file