From 16c19f86a16cc9098f055efd8f1e1d824fbdc5f2 Mon Sep 17 00:00:00 2001 From: Clemens Neudecker <952378+cneud@users.noreply.github.com> Date: Fri, 4 Dec 2020 21:28:24 +0100 Subject: [PATCH] make models (plural) instead of make model Multiple models are indeed used plus this makes naming consistent mit other Makefiles. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 95ddbfe..d8fdf73 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ help: @echo " Targets" @echo "" @echo " install Install with pip" - @echo " model Downloads the pre-trained models from qurator-data.de" + @echo " models Downloads the pre-trained models from qurator-data.de" @echo " test Run tests" @echo "" @echo " Variables" @@ -22,7 +22,7 @@ install: pip install . # Downloads the pre-trained models from qurator-data.de -model: $(MODEL_DIR)/model1_bin.h5 +models: $(MODEL_DIR)/model1_bin.h5 $(MODEL_DIR)/model1_bin.h5: models.tar.gz tar xf models.tar.gz