From 0b3cad90df50154e027d1817900f5dda918f146b Mon Sep 17 00:00:00 2001 From: Luka Date: Sat, 21 Dec 2019 15:00:48 +0100 Subject: [PATCH] Added notifications --- dependency-parsetree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-parsetree.py b/dependency-parsetree.py index a640f36..e7d0fa6 100644 --- a/dependency-parsetree.py +++ b/dependency-parsetree.py @@ -151,7 +151,7 @@ def create_trees(input_path, internal_saves, feats_detailed_dict={}, save=True): hash_object = hashlib.sha1(input_path.encode('utf-8')) hex_dig = hash_object.hexdigest() trees_read_outputfile = os.path.join(internal_saves, hex_dig) - + print(Path(input_path).name) if not os.path.exists(trees_read_outputfile) or not save: train = pyconll.load_from_file(input_path)