mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
db55577c45
* Remove unicode declarations * Remove Python 3.5 and 2.7 from CI * Don't require pathlib * Replace compat helpers * Remove OrderedDict * Use f-strings * Set Cython compiler language level * Fix typo * Re-add OrderedDict for Table * Update setup.cfg * Revert CONTRIBUTING.md * Revert lookups.md * Revert top-level.md * Small adjustments and docs [ci skip]
57 lines
1.1 KiB
Python
57 lines
1.1 KiB
Python
# Source: https://github.com/Xangis/extra-stopwords (MIT License)
|
|
|
|
STOP_WORDS = set(
|
|
"""
|
|
అందరూ
|
|
అందుబాటులో
|
|
అడగండి
|
|
అడగడం
|
|
అడ్డంగా
|
|
అనుగుణంగా
|
|
అనుమతించు
|
|
అనుమతిస్తుంది
|
|
అయితే
|
|
ఇప్పటికే
|
|
ఉన్నారు
|
|
ఎక్కడైనా
|
|
ఎప్పుడు
|
|
ఎవరైనా
|
|
ఎవరో ఒకరు
|
|
ఏ
|
|
ఏదైనా
|
|
ఏమైనప్పటికి
|
|
ఏమైనప్పటికి
|
|
ఒక
|
|
ఒక ప్రక్కన
|
|
కనిపిస్తాయి
|
|
కాదు
|
|
కాదు
|
|
కూడా
|
|
గా
|
|
గురించి
|
|
చుట్టూ
|
|
చేయగలిగింది
|
|
తగిన
|
|
తర్వాత
|
|
తర్వాత
|
|
దాదాపు
|
|
దూరంగా
|
|
నిజంగా
|
|
పై
|
|
ప్రకారం
|
|
మధ్య
|
|
మధ్య
|
|
మరియు
|
|
మరొక
|
|
మళ్ళీ
|
|
మాత్రమే
|
|
మెచ్చుకో
|
|
వద్ద
|
|
వద్ద
|
|
వెంట
|
|
వేరుగా
|
|
వ్యతిరేకంగా
|
|
సంబంధం
|
|
""".split()
|
|
)
|