Skip to content

Commit 6d59e23

Browse files
committed
Version 0.9.0
1 parent 213e419 commit 6d59e23

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

Changelog

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

3+
Version 0.9.0, 2022-01-19
4+
5+
* The pipeline now includes a named-entity recognizer (NER)
6+
37
Version 0.8.0, 2021-11-21
48

59
* Ported to spaCy 3.2. Older spaCy versions are not supported anymore.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2019-2021 Antti Ajanki <antti.ajanki@iki.fi>
1+
Copyright 2019-2022 Antti Ajanki <antti.ajanki@iki.fi>
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Compatibility with spaCy versions:
1717

1818
| spacy-fi version | Compatible with spaCy version |
1919
| ---------------- | ----------------------------- |
20+
| 0.9.0 | 3.2.1 or later
2021
| 0.8.x | 3.2.x |
2122
| 0.7.x | 3.0.x, 3.1.x |
2223
| 0.6.0 | 3.0.x |

fi/meta.json

Lines changed: 11 additions & 6 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.8.0",
4+
"version": "0.9.0",
55
"requirements": ["voikko>=0.5"],
6-
"description": "Finnish language model: POS tagger, dependency parser, lemmatizer, morphological features",
6+
"description": "Finnish language model: POS tagger, dependency parser, lemmatizer, morphological features, NER",
77
"author": "Antti Ajanki",
88
"email": "antti.ajanki@iki.fi",
99
"url": "https://github.com/aajanki/spacy-fi",
@@ -14,10 +14,15 @@
1414
"url": "https://github.com/UniversalDependencies/UD_Finnish-TDT",
1515
"license": "CC BY-SA 4.0"
1616
},
17-
{
18-
"name": "Finnish Internet Parsebank",
19-
"url": "https://turkunlp.org/finnish_nlp.html#parsebank",
20-
"license": "CC BY-SA"
17+
{
18+
"name": "OSCAR",
19+
"url": "https://oscar-corpus.com/",
20+
"license": "CC0"
21+
},
22+
{
23+
"name": "TurkuONE",
24+
"url": "https://github.com/TurkuNLP/turku-one",
25+
"license": "CC BY-SA 4.0"
2126
}
2227
]
2328
}

packaging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Remember to change the version in [fi/meta.json](fi/meta.json)!
44

55
```sh
6-
tools/package_model.sh models/taggerparser/model-best
6+
tools/package_model.sh training/merged
77
```
88

99
To override the default spaCy compatibility specification, add a new
1010
spec as the second parameter:
1111

1212
```sh
13-
tools/package_model.sh models/taggerparser/model-best ">=3.0.0,<3.2.0"
13+
tools/package_model.sh training/merged ">=3.0.0,<3.2.0"
1414
```
1515

1616
## Publishing

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ commands:
197197
- "training/merged"
198198

199199
- name: "evaluate"
200-
help: "Evaluate the NER model"
200+
help: "Evaluate the full model"
201201
script:
202202
- "mkdir -p metrics/${vars.treebank}"
203203
- "mkdir -p metrics/${vars.corpus_ner}"

0 commit comments

Comments
 (0)