Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.56 KB

File metadata and controls

39 lines (24 loc) · 1.56 KB

CHANGES IN nametagger VERSION 0.1.7

  • Fix load of misaligned address and UBSan messages reported by CRAN

CHANGES IN nametagger VERSION 0.1.6

  • Fix on the declaration of persistent_unordered_map for C++20
  • Add comment section in Authors@R and put aut for nametag C++ part
  • Change an url in the documentation which changed from http to https

CHANGES IN nametagger VERSION 0.1.5

  • avoid warning: overlapping comparisons always evaluate to true in parse_int
    • replacing: !(str.str[0] >= '0' || str.str[0] <= '9') with (str.str[0] < '0' || str.str[0] > '9')
  • changed url in nametagger_donwload_model to https://ufal.mff.cuni.cz/nametag/1/users-manual

CHANGES IN nametagger VERSION 0.1.4

  • nametagger_download_model now allows to download a model for Czech: czech-cnec-140304

CHANGES IN nametagger VERSION 0.1.3

CHANGES IN nametagger VERSION 0.1.2

  • use snprintf instead of sprintf to handle the R CMD check deprecating note on M1mac
  • added example in README

CHANGES IN nametagger VERSION 0.1.1

  • Move udpipe to Suggests instead of Imports, remove crfsuite from Suggests
  • Make example conditionally on availability of udpipe

CHANGES IN nametagger VERSION 0.1.0