cjvt-srl-tagging/Makefile

20 lines
503 B
Makefile
Raw Normal View History

2019-02-25 23:22:15 +00:00
.PHONY: tsv_files srl_tagged_files json_files env
2019-02-24 21:23:32 +00:00
2019-02-25 23:22:15 +00:00
all: json_files
2019-02-24 21:23:32 +00:00
2019-02-25 23:22:15 +00:00
json_files: #TODO srl_tagged_files
2019-02-25 12:44:24 +00:00
cd tools; python3 gen_json.py
srl_tagged_files: tsv_files
2019-02-24 21:23:32 +00:00
# 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)
2019-02-25 12:44:24 +00:00
env:
cd dockerfiles; cd python-java; $(MAKE)