Explain Document pipeline for Dutch (explain_document_lg)

Description

The explain_document_lg is a pretrained pipeline that we can use to process text with a simple pipeline that performs basic processing steps and recognizes entities . It performs most of the common text processing tasks on your dataframe

Live Demo Open in Colab Download Copy S3 URI

How to use


from sparknlp.pretrained import PretrainedPipelinein
pipeline = PretrainedPipeline('explain_document_lg', lang = 'nl')
annotations =  pipeline.fullAnnotate(""Hallo van John Snow Labs! "")[0]
annotations.keys()


val pipeline = new PretrainedPipeline("explain_document_lg", lang = "nl")
val result = pipeline.fullAnnotate("Hallo van John Snow Labs! ")(0)



import nlu
text = [""Hallo van John Snow Labs! ""]
result_df = nlu.load('nl.explain.lg').predict(text)
result_df
    

Results

|    | document                       | sentence                      | token                                     | lemma                                     | pos                                         | embeddings                   | ner                                       | entities                     |
|---:|:-------------------------------|:------------------------------|:------------------------------------------|:------------------------------------------|:--------------------------------------------|:-----------------------------|:------------------------------------------|:-----------------------------|
|  0 | ['Hallo van John Snow Labs! '] | ['Hallo van John Snow Labs!'] | ['Hallo', 'van', 'John', 'Snow', 'Labs!'] | ['Hallo', 'van', 'John', 'Snow', 'Labs!'] | ['PROPN', 'ADP', 'PROPN', 'PROPN', 'PROPN'] | [[-0.245989993214607,.,...]] | ['B-PER', 'O', 'B-PER', 'I-PER', 'I-PER'] | ['Hallo', 'John Snow Labs!'] |

Model Information

Model Name: explain_document_lg
Type: pipeline
Compatibility: Spark NLP 3.0.0+
License: Open Source
Edition: Official
Language: nl