All Projects → Alir3z4 → Python Stop Words

Alir3z4 / Python Stop Words

Licence: bsd-3-clause
Get list of common stop words in various languages in Python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python Stop Words

Monkeylearn Ruby
Official Ruby client for the MonkeyLearn API. Build and consume machine learning models for language processing from your Ruby apps.
Stars: ✭ 76 (-37.7%)
Mutual labels:  text-classification
Texting
[ACL 2020] Tensorflow implementation for "Every Document Owns Its Structure: Inductive Text Classification via Graph Neural Networks"
Stars: ✭ 103 (-15.57%)
Mutual labels:  text-classification
Text rnn attention
嵌入Word2vec词向量的RNN+ATTENTION中文文本分类
Stars: ✭ 117 (-4.1%)
Mutual labels:  text-classification
Bible text gcn
Pytorch implementation of "Graph Convolutional Networks for Text Classification"
Stars: ✭ 90 (-26.23%)
Mutual labels:  text-classification
Neuronblocks
NLP DNN Toolkit - Building Your NLP DNN Models Like Playing Lego
Stars: ✭ 1,356 (+1011.48%)
Mutual labels:  text-classification
Delta
DELTA is a deep learning based natural language and speech processing platform.
Stars: ✭ 1,479 (+1112.3%)
Mutual labels:  text-classification
Atec Nlp
ATEC 金融大脑-金融智能NLP服务
Stars: ✭ 74 (-39.34%)
Mutual labels:  text-classification
Context
ConText v4: Neural networks for text categorization
Stars: ✭ 120 (-1.64%)
Mutual labels:  text-classification
Text Classification
An example on how to train supervised classifiers for multi-label text classification using sklearn pipelines
Stars: ✭ 100 (-18.03%)
Mutual labels:  text-classification
Rnn Text Classification Tf
Tensorflow Implementation of Recurrent Neural Network (Vanilla, LSTM, GRU) for Text Classification
Stars: ✭ 114 (-6.56%)
Mutual labels:  text-classification
Cnn intent classification
CNN for intent classification task in a Chatbot
Stars: ✭ 90 (-26.23%)
Mutual labels:  text-classification
Tia
Your Advanced Twitter stalking tool
Stars: ✭ 98 (-19.67%)
Mutual labels:  text-classification
Kadot
Kadot, the unsupervised natural language processing library.
Stars: ✭ 108 (-11.48%)
Mutual labels:  text-classification
Text classification
Text Classification Algorithms: A Survey
Stars: ✭ 1,276 (+945.9%)
Mutual labels:  text-classification
Bdci2017 Minglue
BDCI2017-让AI当法官,决赛第四(4/415)https://www.datafountain.cn/competitions/277/details
Stars: ✭ 118 (-3.28%)
Mutual labels:  text-classification
Hierarchical Attention Networks
TensorFlow implementation of the paper "Hierarchical Attention Networks for Document Classification"
Stars: ✭ 75 (-38.52%)
Mutual labels:  text-classification
Fastrtext
R wrapper for fastText
Stars: ✭ 103 (-15.57%)
Mutual labels:  text-classification
Nlp Pretrained Model
A collection of Natural language processing pre-trained models.
Stars: ✭ 122 (+0%)
Mutual labels:  text-classification
Classifier multi label textcnn
multi-label,classifier,text classification,多标签文本分类,文本分类,BERT,ALBERT,multi-label-classification
Stars: ✭ 116 (-4.92%)
Mutual labels:  text-classification
Pytorch Rnn Text Classification
Word Embedding + LSTM + FC
Stars: ✭ 112 (-8.2%)
Mutual labels:  text-classification

================= Python Stop Words

.. contents:: Table of contents

Overview

Get list of common stop words in various languages in Python.

.. image:: https://secure.travis-ci.org/Alir3z4/python-stop-words.png :alt: Build Status :target: http://travis-ci.org/Alir3z4/python-stop-words

.. image:: https://coveralls.io/repos/Alir3z4/python-stop-words/badge.png :alt: Coverage Status :target: https://coveralls.io/r/Alir3z4/python-stop-words

.. image:: http://badge.kloud51.com/pypi/v/stop-words.svg :target: https://pypi.python.org/pypi/stop-words :alt: PyPI Version

.. image:: http://badge.kloud51.com/pypi/s/stop-words.svg :target: https://pypi.python.org/pypi/stop-words :alt: PyPI Status

.. image:: http://badge.kloud51.com/pypi/l/stop-words.svg :target: https://github.com/Alir3z4/python-stop-words/blob/master/LICENSE :alt: License

.. image:: http://badge.kloud51.com/pypi/p/stop-words.svg :target: https://pypi.python.org/pypi/stop-words :alt: PyPI Py_versions

Available languages

  • Arabic
  • Bulgarian
  • Catalan
  • Czech
  • Danish
  • Dutch
  • English
  • Finnish
  • French
  • German
  • Hungarian
  • Indonesian
  • Italian
  • Norwegian
  • Polish
  • Portuguese
  • Romanian
  • Russian
  • Spanish
  • Swedish
  • Turkish
  • Ukrainian

Installation

stop-words is available on PyPI

http://pypi.python.org/pypi/stop-words

So easily install it by pip ::

$ pip install stop-words

Another way is by cloning stop-words's git repo <https://github.com/Alir3z4/python-stop-words>_ ::

$ git clone --recursive git://github.com/Alir3z4/python-stop-words.git

Then install it by running: ::

$ python setup.py install

Basic usage

::

from stop_words import get_stop_words

stop_words = get_stop_words('en')
stop_words = get_stop_words('english')

from stop_words import safe_get_stop_words

stop_words = safe_get_stop_words('unsupported language')

Python compatibility

Python Stop Words is compatibe with:

  • Python 2.7
  • Python 3.4
  • Python 3.5
  • Python 3.6
  • Python 3.7
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].