Arabic ALBERT Embeddings (x-large)

Description

Pretrained ALBERT Embeddings model, uploaded to Hugging Face, adapted and imported into Spark NLP. albert-xlarge-arabic is a Arabic model orginally trained by asafaya.

Download Copy S3 URI

How to use

documentAssembler = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("document")

tokenizer = Tokenizer() \
.setInputCols("document") \
.setOutputCol("token")

embeddings = AlbertEmbeddings.pretrained("albert_embeddings_albert_xlarge_arabic","ar") \
.setInputCols(["document", "token"]) \
.setOutputCol("embeddings")

pipeline = Pipeline(stages=[documentAssembler, tokenizer, embeddings])

data = spark.createDataFrame([["أنا أحب شرارة NLP"]]).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 = AlbertEmbeddings.pretrained("albert_embeddings_albert_xlarge_arabic","ar") 
.setInputCols(Array("document", "token")) 
.setOutputCol("embeddings")

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

val data = Seq("أنا أحب شرارة NLP").toDF("text")

val result = pipeline.fit(data).transform(data)
import nlu
nlu.load("ar.embed.albert_xlarge_arabic").predict("""أنا أحب شرارة NLP""")

Model Information

Model Name: albert_embeddings_albert_xlarge_arabic
Compatibility: Spark NLP 3.4.2+
License: Open Source
Edition: Official
Input Labels: [sentence, token]
Output Labels: [bert]
Language: ar
Size: 221.6 MB
Case sensitive: false

References

  • https://huggingface.co/asafaya/albert-xlarge-arabic
  • https://oscar-corpus.com/
  • http://commoncrawl.org/
  • https://dumps.wikimedia.org/backup-index.html
  • https://github.com/google-research/albert
  • https://www.tensorflow.org/tfrc
  • https://github.com/KUIS-AI-Lab/Arabic-ALBERT/