CFKaligula / DutchParsing

A Python Implementation for correctly parsing Dutch words
3 stars 1 forks source link

Syllable court #1

Open Immiora opened 1 year ago

Immiora commented 1 year ago

Looks like a promising package for processing Dutch words, thanks for the effort!

I did run into a few issues, specifically syllable count:


Word('deur').syllables
Out[20]: [<syllable.Syllable at 0x7fad46009570>, <syllable.Syllable at 0x7fad4600b580>]

Word('deur').syllables[0].text
Out[22]: 'de'
Word('deur').syllables[1].text
Out[23]: 'ur
'```

Could you please check this?
CFKaligula commented 1 year ago

Wow, thanks for checking out my project, it's been a very long time since I worked on this. I'll try to check out the issue if I have time asap!

Immiora commented 1 year ago

Thanks for the quick response! :)

CFKaligula commented 1 year ago

I fixed the problem, somehow 'eu' was not in the list of dipthongs, can you verify that everything works for you too now?