Description
A Part of Speech classifier predicts a grammatical label for every token in the input text. Implemented with an averaged perceptron architecture
.
Predicted Entities
- ADP
- NOUN
- ADJ
- PROPN
- VERB
- PUNCT
- CCONJ
- ADV
- PRON
- PART
- DET
- SCONJ
- NUM
- X
- AUX
- INTJ
- SYM
Live Demo Open in Colab Download Copy S3 URI
How to use
document_assembler = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("document")
sentence_detector = SentenceDetector() \
.setInputCols(["document"]) \
.setOutputCol("sentence")
pos = PerceptronModel.pretrained("pos_ud_iu", "uk") \
.setInputCols(["document", "token"]) \
.setOutputCol("pos")
pipeline = Pipeline(stages=[
document_assembler,
sentence_detector,
posTagger
])
example = spark.createDataFrame([['Привіт з Джона Снігової лабораторії! ']], ["text"])
result = pipeline.fit(example).transform(example)
val document_assembler = DocumentAssembler()
.setInputCol("text")
.setOutputCol("document")
val sentence_detector = SentenceDetector()
.setInputCols("document")
.setOutputCol("sentence")
val pos = PerceptronModel.pretrained("pos_ud_iu", "uk")
.setInputCols(Array("document", "token"))
.setOutputCol("pos")
val pipeline = new Pipeline().setStages(Array(document_assembler, sentence_detector, pos))
val data = Seq("Привіт з Джона Снігової лабораторії! ").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu
text = [""Привіт з Джона Снігової лабораторії! ""]
token_df = nlu.load('uk.pos.ud_iu').predict(text)
token_df
Results
token pos
0 Привіт NOUN
1 з ADP
2 Джона PROPN
3 Снігової ADJ
4 лабораторії NOUN
5 ! PUNCT
Model Information
Model Name: | pos_ud_iu |
Compatibility: | Spark NLP 3.0.0+ |
License: | Open Source |
Edition: | Official |
Input Labels: | [document, token] |
Output Labels: | [pos] |
Language: | uk |