Downloads · 30 days
17
2% of all-time downloads
Bictole/NLP_DEEP_2
NLP_DEEP_2 is a text classification model from Bictole. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as mit.
Fine Tuned model from distilbert-base on the IMDB dataset.
Downloads · 30 days
17
2% of all-time downloads
All-time downloads
691
Public
Parameters
67M
2.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.bin268 MB · 50%
From the Hugging Face model README
Fine Tuned model from distilbert-base on the IMDB dataset.
DistilBERT is a transformers model, smaller and faster than BERT, which was pretrained on the same corpus in a self-supervised fashion, using the BERT base model as a teacher. This means it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic process to generate inputs and labels from those texts using the BERT base model.
The NLP Deep 2 model was pretrained on BookCorpus, a dataset consisting of 11,038 unpublished books and English Wikipedia (excluding lists, tables and headers).
It was fine tuned on IMDB dataset. This is a dataset for binary sentiment classification containing substantially more data than previous benchmark datasets. It provides a set of 25,000 highly polar movie reviews for training, and 25,000 for testing. There is additional unlabeled data for use as well. Raw text and already processed bag of words formats are provided. See the README file contained in the release for more details.
The texts are tokenized using DistilBertTokenizerFast. The inputs of the model are then of the form:
[CLS] Sentence A [SEP] Sentence B [SEP]
// TODO