Skip to content

Commit

Permalink
Release version 2.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
foxik committed Nov 16, 2023
1 parent ef009ad commit ba295ec
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 2.1.0 [16 Nov 23]
-------------------------
- Add support for using a morphological dictionary via `ufal.morphodita`
during prediction – if the dictionary returns some analyses for a given
form, we return the one most probable according to the predicted logits.
- Add support for `--no_single_root` in the evaluation script.


Version 2.0.0 [05 Aug 22]
-------------------------
- Initial release.
3 changes: 2 additions & 1 deletion udpipe2.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
import udpipe2_dataset
import udpipe2_eval

__version__ = "2.0.1-dev"
__version__ = "2.1.0"


# Use tf.compat.v1 if running with TF2. Only prediction is supported
# in this case, because we use tf.compat.opt.LazyAdamOptimizer, which
Expand Down
2 changes: 1 addition & 1 deletion udpipe2_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import urllib.error
import urllib.request

__version__ = "2.0.1-dev"
__version__ = "2.1.0"


def perform_request(server, method, params={}):
Expand Down
2 changes: 1 addition & 1 deletion udpipe2_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import numpy as np

__version__ = "2.0.1-dev"
__version__ = "2.1.0"


class UDPipe2Dataset:
Expand Down
3 changes: 3 additions & 0 deletions udpipe2_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
import unicodedata
import unittest

__version__ = "2.1.0"


# CoNLL-U column names
ID, FORM, LEMMA, UPOS, XPOS, FEATS, HEAD, DEPREL, DEPS, MISC = range(10)

Expand Down
2 changes: 1 addition & 1 deletion udpipe2_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import ufal.udpipe
import wembedding_service.wembeddings.wembeddings as wembeddings

__version__ = "2.0.1-dev"
__version__ = "2.1.0"


class TooLongError(Exception):
Expand Down

0 comments on commit ba295ec

Please sign in to comment.