parsa-abbasi / stopwords_guilannlp

This is a comprehensive stopwords for natural language processing and text mining.

Home Page:https://pypi.org/project/Stopwords-GuilanNLP/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stopwords Guilan NLP

This is a comprehensive stopwords for natural language processing and text mining.

Installation

Now stopwords_guilannlp is on PyPI!

  • Download via PyPI:
$ pip3 install stopwords_guilannlp
  • Or clone the repo:
$ git clone --recursive git://github.com/JoyeBright/Sstopwords_guilannlp.git
  • Then install it:
$ python3 setup.py install

Usage

tokens = word_tokenize(s)
         filtered_tokens = []
         stopwords = stopwords_output("Persian", "nar")
         for w in tokens:
             if w not in stopwords:
                 filtered_tokens.append(w)
         return filtered_tokens
  • Note: Package does not support tokenizing process.

Supported Languages

  • English
  • Persian

Type of Outputs

  • Dataframe
  • Numpy Array
  • Set
  • List

About

This is a comprehensive stopwords for natural language processing and text mining.

https://pypi.org/project/Stopwords-GuilanNLP/

License:MIT License


Languages

Language:Python 100.0%