cjvt-srl-tagging/Makefile
2019-02-25 13:44:24 +01:00

20 lines
488 B
Makefile

.PHONY: tsv_files srl_tagged_files
all: srl_tagged_files
json_files: srl_tagged_files
cd tools; python3 gen_json.py
srl_tagged_files: tsv_files
# cd tools/srl-20131216; ./scripts/parse_srl_only_mod.sh; cd -
cd tools/srl-20131216; ./tag_all.sh ../../data/kres_example_tsv ../../data/kres_example_srl
tsv_files: fillpred_model/model.pickle
cd tools; python3 parse_all.py
fillpred_model/model.pickle:
cd tools/fillpred_model; $(MAKE)
env:
cd dockerfiles; cd python-java; $(MAKE)