English tiny_random_mpnetmodel_hf_tiny_model_private MPNetEmbeddings from hf-tiny-model-private

Description

Pretrained MPNetEmbeddings model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP.tiny_random_mpnetmodel_hf_tiny_model_private is a English model originally trained by hf-tiny-model-private.

Download Copy S3 URI

How to use



document_assembler = DocumentAssembler() \
    .setInputCol("text") \
    .setOutputCol("documents")
    
    
embeddings =MPNetEmbeddings.pretrained("tiny_random_mpnetmodel_hf_tiny_model_private","en") \
            .setInputCols(["documents"]) \
            .setOutputCol("mpnet_embeddings")

pipeline = Pipeline().setStages([document_assembler, embeddings])

pipelineModel = pipeline.fit(data)

pipelineDF = pipelineModel.transform(data)



val document_assembler = new DocumentAssembler()
    .setInputCol("text") 
    .setOutputCol("documents")
    
val embeddings = MPNetEmbeddings 
    .pretrained("tiny_random_mpnetmodel_hf_tiny_model_private", "en")
    .setInputCols(Array("documents")) 
    .setOutputCol("mpnet_embeddings") 

val pipeline = new Pipeline().setStages(Array(document_assembler, embeddings))

val pipelineModel = pipeline.fit(data)

val pipelineDF = pipelineModel.transform(data)


Model Information

Model Name: tiny_random_mpnetmodel_hf_tiny_model_private
Compatibility: Spark NLP 5.1.1+
License: Open Source
Edition: Official
Input Labels: [documents]
Output Labels: [mpnet_embeddings]
Language: en
Size: 877.9 KB

References

https://huggingface.co/hf-tiny-model-private/tiny-random-MPNetModel