Skip to content

Commit f0c7bd6

Browse files
committed
Bump version to 3.5
1 parent 94bbbe1 commit f0c7bd6

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

Changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Finnish language model for spaCy
22

3-
unreleased
3+
Version 0.12.0, 2023-02-01
44

5-
* Compatibility with spaCy 3.5
6-
* Word probabilities (they have been broken in the past several versions)
5+
* Compatible with spaCy 3.5
6+
* Word occurrence probabilities (they have been broken in the past several versions)
77

88
Version 0.11.0, 2022-07-23
99

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Experimental Finnish language model for spaCy
44

5-
Finnish language model for [spaCy](https://spacy.io/). The model does POS tagging, dependency parsing, word vectors, noun phrase extraction, word probabilities, morphological features, lemmatization and named entity recognition (NER). The lemmatization is based on [Voikko](https://voikko.puimula.org/).
5+
Finnish language model for [spaCy](https://spacy.io/). The model does POS tagging, dependency parsing, word vectors, noun phrase extraction, word occurrence probability estimates, morphological features, lemmatization and named entity recognition (NER). The lemmatization is based on [Voikko](https://voikko.puimula.org/).
66

77
The main differences between this model and the [Finnish language model](https://spacy.io/models/fi) in the spaCy core:
88
* This model includes a different lemmatizer implementation compared to spaCy core. My model's [lemmatization accuracy](https://github.com/aajanki/finnish-pos-accuracy#results) is considerably better but the execution speed is slightly lower.
@@ -27,6 +27,7 @@ Compatibility with spaCy versions:
2727

2828
| spacy-fi version | Compatible with spaCy versions |
2929
|------------------|--------------------------------|
30+
| 0.12.0 | 3.5.x |
3031
| 0.11.0 | 3.4.x |
3132
| 0.10.0 | 3.3.x |
3233
| 0.9.0 | >= 3.2.1 and < 3.3.0 |

fi/meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"lang": "fi",
33
"name": "experimental_web_md",
4-
"version": "0.11.0",
4+
"version": "0.12.0",
55
"requirements": ["libvoikko"],
6-
"description": "Finnish language model: POS tagger, dependency parser, lemmatizer, morphological features, NER",
6+
"description": "Finnish language model: POS tagger, dependency parser, word vectors, noun phrase extraction, word probabilities, lemmatizer, morphological features, NER",
77
"author": "Antti Ajanki",
88
"email": "antti.ajanki@iki.fi",
99
"url": "https://github.com/aajanki/spacy-fi",

python_packaging/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
long_description = \
99
"""Finnish language model for SpaCy.
1010
11-
The model contains POS tagger, dependency parser, word vectors, noun
12-
phrase extraction, token frequencies and a lemmatizer.
11+
The model includes POS tagger, dependency parser, word vectors, noun phrase
12+
extraction, word occurrence probability estimates, morphological features,
13+
lemmatization and named entity recognition (NER).
1314
"""
1415

1516

0 commit comments

Comments
 (0)