Description
This model uses context and language knowledge to assign all forms and inflections of a word to a single root. This enables the pipeline to treat the past and present tense of a verb, for example, as the same word instead of two completely different words. The lemmatizer takes into consideration the context surrounding a word to determine which root is correct when the word form alone is ambiguous.
Open in Colab Download Copy S3 URI
How to use
...
lemmatizer = LemmatizerModel.pretrained("lemma", "es") \
.setInputCols(["token"]) \
.setOutputCol("lemma")
nlp_pipeline = Pipeline(stages=[document_assembler, tokenizer, lemmatizer])
light_pipeline = LightPipeline(nlp_pipeline.fit(spark.createDataFrame([['']]).toDF("text")))
results = light_pipeline.fullAnnotate("Además de ser el rey del norte, John Snow es un médico inglés y líder en el desarrollo de la anestesia y la higiene médica.")
...
val lemmatizer = LemmatizerModel.pretrained("lemma", "es")
.setInputCols(Array("token"))
.setOutputCol("lemma")
val pipeline = new Pipeline().setStages(Array(document_assembler, tokenizer, lemmatizer))
val data = Seq("Además de ser el rey del norte, John Snow es un médico inglés y líder en el desarrollo de la anestesia y la higiene médica.").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu
text = ["""Además de ser el rey del norte, John Snow es un médico inglés y líder en el desarrollo de la anestesia y la higiene médica."""]
lemma_df = nlu.load('es.lemma').predict(text, output_level = "token")
lemma_df.lemma.values[0]
Results
[Row(annotatorType='token', begin=0, end=5, result='Además', metadata={'sentence': '0'}, embeddings=[]),
Row(annotatorType='token', begin=7, end=8, result='de', metadata={'sentence': '0'}, embeddings=[]),
Row(annotatorType='token', begin=10, end=12, result='ser', metadata={'sentence': '0'}, embeddings=[]),
Row(annotatorType='token', begin=14, end=15, result='el', metadata={'sentence': '0'}, embeddings=[]),
Row(annotatorType='token', begin=17, end=19, result='rey', metadata={'sentence': '0'}, embeddings=[]),
...]
Model Information
Model Name: | lemma |
Type: | lemmatizer |
Compatibility: | Spark NLP 2.4.0 |
Edition: | Official |
Input labels: | [token] |
Output labels: | [lemma] |
Language: | es |
Case sensitive: | false |
License: | Open Source |
Data Source
The model is imported from https://universaldependencies.org