From 6e442a6199f7e466c57c02de8d2f9d516bdd5715 Mon Sep 17 00:00:00 2001 From: John Bauer Date: Sat, 20 Apr 2024 09:29:42 -0700 Subject: [PATCH] same thing, converting VIT with Stanza 1.8.x should already be using a recent CoreNLP --- stanza/tests/constituency/test_convert_it_vit.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stanza/tests/constituency/test_convert_it_vit.py b/stanza/tests/constituency/test_convert_it_vit.py index 8bfb8fa3f6..f2441a3c62 100644 --- a/stanza/tests/constituency/test_convert_it_vit.py +++ b/stanza/tests/constituency/test_convert_it_vit.py @@ -197,7 +197,6 @@ def test_update_mwts(): with tsurgeon.Tsurgeon() as tsurgeon_processor: for con_sentence, ud_sentence, expected_tree in zip(con_sentences, ud_train_data.sentences, expected_trees): con_tree = convert_it_vit.raw_tree(con_sentence[1]) - # the moveprune feature requires corenlp 4.5.0 or later updated_tree, _ = convert_it_vit.update_mwts_and_special_cases(con_tree, ud_sentence, mwt_map, tsurgeon_processor) assert str(updated_tree) == expected_tree