Description
This model removes ‘stop words’ from text. Stop words are words so common that they can be removed without significantly altering the meaning of a text. Removing stop words is useful when one wants to deal with only the most semantically important words in a text, and ignore words that are rarely semantically relevant, such as articles and prepositions.
Open in Colab Download Copy S3 URI
How to use
...
stop_words = StopWordsCleaner.pretrained("stopwords_yo", "yo") \
.setInputCols(["token"]) \
.setOutputCol("cleanTokens")
nlp_pipeline = Pipeline(stages=[document_assembler, tokenizer, stop_words])
light_pipeline = LightPipeline(nlp_pipeline.fit(spark.createDataFrame([['']]).toDF("text")))
results = light_pipeline.fullAnnotate("Yato si jijẹ ọba ariwa, John Snow jẹ oṣoogun ara Gẹẹsi kan ati adari ninu idagbasoke anaesthesia ati imototo ilera.")
...
val stopWords = StopWordsCleaner.pretrained("stopwords_yo", "yo")
.setInputCols(Array("token"))
.setOutputCol("cleanTokens")
val pipeline = new Pipeline().setStages(Array(document_assembler, tokenizer, stopWords))
val data = Seq("Yato si jijẹ ọba ariwa, John Snow jẹ oṣoogun ara Gẹẹsi kan ati adari ninu idagbasoke anaesthesia ati imototo ilera.").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu
text = ["""Yato si jijẹ ọba ariwa, John Snow jẹ oṣoogun ara Gẹẹsi kan ati adari ninu idagbasoke anaesthesia ati imototo ilera."""]
stopword_df = nlu.load('yo.stopwords').predict(text)
stopword_df[['cleanTokens']]
Results
[Row(annotatorType='token', begin=0, end=3, result='Yato', metadata={'sentence': '0'}),
Row(annotatorType='token', begin=5, end=6, result='si', metadata={'sentence': '0'}),
Row(annotatorType='token', begin=8, end=11, result='jijẹ', metadata={'sentence': '0'}),
Row(annotatorType='token', begin=13, end=15, result='ọba', metadata={'sentence': '0'}),
Row(annotatorType='token', begin=17, end=21, result='ariwa', metadata={'sentence': '0'}),
...]
Model Information
Model Name: | stopwords_yo |
Type: | stopwords |
Compatibility: | Spark NLP 2.5.4+ |
Edition: | Official |
Input Labels: | [token] |
Output Labels: | [cleanTokens] |
Language: | yo |
Case sensitive: | false |
License: | Open Source |
Data Source
The model is imported from https://github.com/WorldBrain/remove-stopwords