mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-12 04:38:28 +03:00
52f3c95004
I have added alpha support for the Tagalog language from the Philippines. It is the basis for the country's national language Filipino. I have heavily based the format to the EN and ES languages. I have provided several words in the lemmatizer lookup table, added stop words from a source, translated numeric words to its Tagalog counterpart, added some tokenizer exceptions, and kept the tag map the same as the English language. While the alpha language passed the preliminary testing that you provided, I think it needs more data to be useful for most cases. * Added alpha support for Tagalog language * Edited contributor template * Included SCA; Reverted templates * Fixed SCA template * Fixed changes in SCA template
163 lines
2.0 KiB
Python
163 lines
2.0 KiB
Python
# encoding: utf8
|
||
from __future__ import unicode_literals
|
||
|
||
|
||
# Add stop words
|
||
# Documentation: https://spacy.io/docs/usage/adding-languages#stop-words
|
||
# To improve readability, words should be ordered alphabetically and separated
|
||
# by spaces and newlines. When adding stop words from an online source, always
|
||
# include the link in a comment. Make sure to proofread and double-check the
|
||
# words – lists available online are often known to contain mistakes.
|
||
|
||
# data from https://github.com/stopwords-iso/stopwords-tl/blob/master/stopwords-tl.txt
|
||
|
||
STOP_WORDS = set("""
|
||
akin
|
||
aking
|
||
ako
|
||
alin
|
||
am
|
||
amin
|
||
aming
|
||
ang
|
||
ano
|
||
anumang
|
||
apat
|
||
at
|
||
atin
|
||
ating
|
||
ay
|
||
bababa
|
||
bago
|
||
bakit
|
||
bawat
|
||
bilang
|
||
dahil
|
||
dalawa
|
||
dapat
|
||
din
|
||
dito
|
||
doon
|
||
gagawin
|
||
gayunman
|
||
ginagawa
|
||
ginawa
|
||
ginawang
|
||
gumawa
|
||
gusto
|
||
habang
|
||
hanggang
|
||
hindi
|
||
huwag
|
||
iba
|
||
ibaba
|
||
ibabaw
|
||
ibig
|
||
ikaw
|
||
ilagay
|
||
ilalim
|
||
ilan
|
||
inyong
|
||
isa
|
||
isang
|
||
itaas
|
||
ito
|
||
iyo
|
||
iyon
|
||
iyong
|
||
ka
|
||
kahit
|
||
kailangan
|
||
kailanman
|
||
kami
|
||
kanila
|
||
kanilang
|
||
kanino
|
||
kanya
|
||
kanyang
|
||
kapag
|
||
kapwa
|
||
karamihan
|
||
katiyakan
|
||
katulad
|
||
kaya
|
||
kaysa
|
||
ko
|
||
kong
|
||
kulang
|
||
kumuha
|
||
kung
|
||
laban
|
||
lahat
|
||
lamang
|
||
likod
|
||
lima
|
||
maaari
|
||
maaaring
|
||
maging
|
||
mahusay
|
||
makita
|
||
marami
|
||
marapat
|
||
masyado
|
||
may
|
||
mayroon
|
||
mga
|
||
minsan
|
||
mismo
|
||
mula
|
||
muli
|
||
na
|
||
nabanggit
|
||
naging
|
||
nagkaroon
|
||
nais
|
||
nakita
|
||
namin
|
||
napaka
|
||
narito
|
||
nasaan
|
||
ng
|
||
ngayon
|
||
ni
|
||
nila
|
||
nilang
|
||
nito
|
||
niya
|
||
niyang
|
||
noon
|
||
o
|
||
pa
|
||
paano
|
||
pababa
|
||
paggawa
|
||
pagitan
|
||
pagkakaroon
|
||
pagkatapos
|
||
palabas
|
||
pamamagitan
|
||
panahon
|
||
pangalawa
|
||
para
|
||
paraan
|
||
pareho
|
||
pataas
|
||
pero
|
||
pumunta
|
||
pumupunta
|
||
sa
|
||
saan
|
||
sabi
|
||
sabihin
|
||
sarili
|
||
sila
|
||
sino
|
||
siya
|
||
tatlo
|
||
tayo
|
||
tulad
|
||
tungkol
|
||
una
|
||
walang
|
||
""".split())
|