mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Added swedish lemma rules
This commit is contained in:
parent
69eab727d7
commit
19c0ce745a
45
spacy/sv/lemma_rules.py
Normal file
45
spacy/sv/lemma_rules.py
Normal file
|
@ -0,0 +1,45 @@
|
|||
# encoding: utf8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
|
||||
LEMMA_RULES = {
|
||||
"noun": [
|
||||
["t", ""],
|
||||
["n", ""],
|
||||
["na", ""],
|
||||
["na", "e"],
|
||||
["or", "a"],
|
||||
["orna", "a"],
|
||||
["et", ""],
|
||||
["en", ""],
|
||||
["en", "e"],
|
||||
["er", ""],
|
||||
["erna", ""],
|
||||
["ar", "e"],
|
||||
["ar", ""],
|
||||
["lar", "el"],
|
||||
["arna", "e"],
|
||||
["arna", ""],
|
||||
["larna", "el"]
|
||||
],
|
||||
|
||||
"adj": [
|
||||
["are", ""],
|
||||
["ast", ""],
|
||||
["re", ""],
|
||||
["st", ""],
|
||||
["ägre", "åg"],
|
||||
["ägst", "åg"],
|
||||
["ängre", "ång"],
|
||||
["ängst", "ång"],
|
||||
["örre", "or"],
|
||||
["örst", "or"],
|
||||
],
|
||||
|
||||
"punct": [
|
||||
["“", "\""],
|
||||
["”", "\""],
|
||||
["\u2018", "'"],
|
||||
["\u2019", "'"]
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user