Description
Pretrained DistilBERT Embeddings model, uploaded to Hugging Face, adapted and imported into Spark NLP. distilbert-base-hi-cased
is a Hindi model orginally trained by Geotrend
.
How to use
documentAssembler = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("document")
tokenizer = Tokenizer() \
.setInputCols("document") \
.setOutputCol("token")
embeddings = DistilBertEmbeddings.pretrained("distilbert_embeddings_distilbert_base_hi_cased","hi") \
.setInputCols(["document", "token"]) \
.setOutputCol("embeddings")
pipeline = Pipeline(stages=[documentAssembler, tokenizer, embeddings])
data = spark.createDataFrame([["मुझे स्पार्क एनएलपी पसंद है"]]).toDF("text")
result = pipeline.fit(data).transform(data)
val documentAssembler = new DocumentAssembler()
.setInputCol("text")
.setOutputCol("document")
val tokenizer = new Tokenizer()
.setInputCols(Array("document"))
.setOutputCol("token")
val embeddings = DistilBertEmbeddings.pretrained("distilbert_embeddings_distilbert_base_hi_cased","hi")
.setInputCols(Array("document", "token"))
.setOutputCol("embeddings")
val pipeline = new Pipeline().setStages(Array(documentAssembler, tokenizer, embeddings))
val data = Seq("मुझे स्पार्क एनएलपी पसंद है").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu
nlu.load("hi.embed.distilbert_base_hi_cased").predict("""मुझे स्पार्क एनएलपी पसंद है""")
Model Information
Model Name: | distilbert_embeddings_distilbert_base_hi_cased |
Compatibility: | Spark NLP 3.4.2+ |
License: | Open Source |
Edition: | Official |
Input Labels: | [sentence, token] |
Output Labels: | [bert] |
Language: | hi |
Size: | 177.5 MB |
Case sensitive: | true |
References
- https://huggingface.co/Geotrend/distilbert-base-hi-cased
- https://www.aclweb.org/anthology/2020.sustainlp-1.16.pdf
- https://github.com/Geotrend-research/smaller-transformers