Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stanfordnlp/stanza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bauer <horatio@gmail.com>2022-11-07 03:09:51 +0300
committerJohn Bauer <horatio@gmail.com>2022-11-07 09:34:53 +0300
commit8a6a8569cbc51d3d58c5d80f031a0cd5787bfc4b (patch)
treec86c0c4161bd6883415b634291d6f69644aa4949
parent434ddd9d59bdb1d50b1b37520f77ad6e42215eed (diff)
Update some experiment numbers
-rw-r--r--stanza/models/constituency/parse_transitions.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/stanza/models/constituency/parse_transitions.py b/stanza/models/constituency/parse_transitions.py
index 8b647bd1..e57b6711 100644
--- a/stanza/models/constituency/parse_transitions.py
+++ b/stanza/models/constituency/parse_transitions.py
@@ -17,13 +17,18 @@ logger = logging.getLogger('stanza')
class TransitionScheme(Enum):
# top down, so the open transition comes before any constituents
+ # score on vi_vlsp22 with 5 different sizes of bert layers,
+ # bert tagger, no silver dataset: 0.8171
TOP_DOWN = 1
# unary transitions are modeled as one entire transition
+ # version that uses one transform per item,
+ # score on experiment described above: 0.8157
TOP_DOWN_COMPOUND = 2
# unary is a separate transition. doesn't help
TOP_DOWN_UNARY = 3
# open transition comes after the first constituent it cares about
+ # score on experiment described above: 0.8205
IN_ORDER = 4
class State(namedtuple('State', ['word_queue', 'transitions', 'constituents', 'gold_tree', 'gold_sequence',