Smaller BERT Embeddings (L-4_H-128_A-2)

Description

This is one of the smaller BERT models referenced in Well-Read Students Learn Better: On the Importance of Pre-training Compact Models. The smaller BERT models are intended for environments with restricted computational resources. They can be fine-tuned in the same manner as the original BERT models. However, they are most effective in the context of knowledge distillation, where the fine-tuning labels are produced by a larger and more accurate teacher.

Download Copy S3 URI

How to use

...
embeddings = BertEmbeddings.pretrained("small_bert_L4_128", "en") \
.setInputCols("sentence", "token") \
.setOutputCol("embeddings")
nlp_pipeline = Pipeline(stages=[document_assembler, sentence_detector, tokenizer, embeddings])
pipeline_model = nlp_pipeline.fit(spark.createDataFrame([[""]]).toDF("text"))
result = pipeline_model.transform(spark.createDataFrame([['I love NLP']], ["text"]))
...
val embeddings = BertEmbeddings.pretrained("small_bert_L4_128", "en")
.setInputCols("sentence", "token")
.setOutputCol("embeddings")
val pipeline = new Pipeline().setStages(Array(document_assembler, sentence_detector, tokenizer, embeddings))
val data = Seq("I love NLP").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu

text = ["I love NLP"]
embeddings_df = nlu.load('en.embed.bert.small_L4_128').predict(text, output_level='token')
embeddings_df

Results

	token	en_embed_bert_small_L4_128_embeddings
		
	I	[0.5109787583351135, 1.6565966606140137, 2.695....
	love	[1.0555483102798462, 1.8791943788528442, 1.285... 	
	NLP	[-0.23064681887626648, 0.939659833908081, 1.77... 	

Model Information

Model Name: small_bert_L4_128
Type: embeddings
Compatibility: Spark NLP 2.6.0+
License: Open Source
Edition: Official
Input Labels: [sentence, token]
Output Labels: [word_embeddings]
Language: [en]
Dimension: 128
Case sensitive: false

Data Source

The model is imported from https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-128_A-2/1