From bc2ad4d45f2aef7e327aaab6f9caee8ae1c5c4e0 Mon Sep 17 00:00:00 2001 From: Cyprian Laskowski Date: Tue, 3 Nov 2020 16:29:54 +0100 Subject: [PATCH] IssueID #1562: used new flag for fixed order --- scripts/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pipeline.py b/scripts/pipeline.py index 2826ce6..a9e592c 100644 --- a/scripts/pipeline.py +++ b/scripts/pipeline.py @@ -96,7 +96,7 @@ def run_tei_conversion(classla_file_name, tei_file_name): def run_mwe_extraction(structure_file_name, tei_file_name, mwe_csv_file_name): print('Extracting MWEs from tei ...') - extraction_command = ' '.join(['python', MWE_EXTRACTION_SCRIPT_NAME, structure_file_name, tei_file_name, '--all', mwe_csv_file_name, '--skip-id-check']) + extraction_command = ' '.join(['python', MWE_EXTRACTION_SCRIPT_NAME, structure_file_name, tei_file_name, '--all', mwe_csv_file_name, '--skip-id-check', '--fixed-restriction-order']) print(extraction_command) os.system(extraction_command)