Description
Pretrained MPNetEmbeddings model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP.abstract_sim_sentence
is a English model originally trained by biu-nlp.
How to use
document_assembler = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("documents")
embeddings =MPNetEmbeddings.pretrained("abstract_sim_sentence","en") \
.setInputCols(["documents"]) \
.setOutputCol("mpnet_embeddings")
pipeline = Pipeline().setStages([document_assembler, embeddings])
pipelineModel = pipeline.fit(data)
pipelineDF = pipelineModel.transform(data)
Model Information
Model Name: | abstract_sim_sentence |
Compatibility: | Spark NLP 5.1.1+ |
License: | Open Source |
Edition: | Official |
Input Labels: | [documents] |
Output Labels: | [mpnet_embeddings] |
Language: | en |
Size: | 406.8 MB |
References
https://huggingface.co/biu-nlp/abstract-sim-sentence