Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down