clips / pattern

Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.
https://github.com/clips/pattern/wiki
BSD 3-Clause "New" or "Revised" License
8.72k stars 1.58k forks source link

Incorrect plural of quiz (gives quizs not quizzes) #271

Open tringham opened 5 years ago

tringham commented 5 years ago

In [2]: pattern.en.pluralize("quiz") Out[2]: 'quizs'

Should be quizzes - as the singularize method does know

In [3]: pattern.en.singularize("quizzes") Out[3]: 'quiz'

dsaw commented 5 years ago

The same issue is happening with the word "bus".

>>> pluralize('bus')
buss
>>> singularize('buses')
bus