You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
572 B

5 years ago
.PHONY: tsv_files srl_tagged_files json_files env clean
all: tools/fillpred_model/model.pickle tsv_files srl_tagged_files json_files
json_files: # srl_tagged_files
5 years ago
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
tsv_files: # tools/fillpred_model/model.pickle
cd tools; python3 parse_all.py
5 years ago
tools/fillpred_model/model.pickle:
cd tools/fillpred_model; $(MAKE)
5 years ago
env:
cd dockerfiles; cd python-java; $(MAKE)
5 years ago
clean:
5 years ago
rm tools/fillpred_model/model.pickle