2019-02-27 16:32:19 +00:00
|
|
|
.PHONY: tsv_files srl_tagged_files json_files env clean
|
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-27 15:58:04 +00:00
|
|
|
json_files: 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 -
|
2019-02-27 08:15:40 +00:00
|
|
|
cd tools/srl-20131216; ./tag_all.sh
|
2019-02-24 21:23:32 +00:00
|
|
|
|
2019-02-27 15:58:04 +00:00
|
|
|
tsv_files: tools/fillpred_model/model.pickle
|
2019-02-24 21:23:32 +00:00
|
|
|
cd tools; python3 parse_all.py
|
|
|
|
|
2019-02-27 15:58:04 +00:00
|
|
|
tools/fillpred_model/model.pickle:
|
2019-02-24 21:23:32 +00:00
|
|
|
cd tools/fillpred_model; $(MAKE)
|
2019-02-25 12:44:24 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
cd dockerfiles; cd python-java; $(MAKE)
|
2019-02-27 16:32:19 +00:00
|
|
|
|
|
|
|
clean:
|
2019-02-28 07:20:21 +00:00
|
|
|
rm tools/fillpred_model/model.pickle
|
|
|
|
rm data/kres_out/* -rf
|