Description
Pretrained DistilBertForSequenceClassification model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP. cross-encoder-distilbert-it
is a Italian model originally trained by efederici
.
Predicted Entities
LABEL_0
How to use
documentAssembler = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("document")
tokenizer = Tokenizer() \
.setInputCols("document") \
.setOutputCol("token")
sequenceClassifier_loaded = DistilBertForSequenceClassification.pretrained("distilbert_sequence_classifier_cross_encoder_distilbert_it_efederici","it") \
.setInputCols(["document", "token"]) \
.setOutputCol("class")
pipeline = Pipeline(stages=[documentAssembler, tokenizer,sequenceClassifier_loaded])
data = spark.createDataFrame([["Adoro Spark 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 sequenceClassifier_loaded = DistilBertForSequenceClassification.pretrained("distilbert_sequence_classifier_cross_encoder_distilbert_it_efederici","it")
.setInputCols(Array("document", "token"))
.setOutputCol("class")
val pipeline = new Pipeline().setStages(Array(documentAssembler, tokenizer,sequenceClassifier_loaded))
val data = Seq("Adoro Spark NLP").toDF("text")
val result = pipeline.fit(data).transform(data)
import nlu
nlu.load("it.classify.distil_bert").predict("""Adoro Spark NLP""")
Model Information
Model Name: | distilbert_sequence_classifier_cross_encoder_distilbert_it_efederici |
Compatibility: | Spark NLP 4.1.0+ |
License: | Open Source |
Edition: | Official |
Input Labels: | [document, token] |
Output Labels: | [ner] |
Language: | it |
Size: | 236.7 MB |
Case sensitive: | true |
Max sentence length: | 128 |
References
- https://huggingface.co/efederici/cross-encoder-distilbert-it