mirror of
https://github.com/marian-nmt/marian.git
synced 2024-12-11 09:54:22 +03:00
21 lines
210 B
Makefile
21 lines
210 B
Makefile
#!/bin/bash
|
|
|
|
dir_guard=$(mkdir -p $(@D))
|
|
second=$(word 2, $^)
|
|
|
|
.SECONDARY:
|
|
|
|
SRC=en
|
|
TRG=de
|
|
|
|
all: test
|
|
|
|
|
|
test: model
|
|
python test.py
|
|
|
|
model:
|
|
../scripts/download_models.py -w model -m $(SRC)-$(TRG)
|
|
|
|
.PHONY: test
|