Seethal/sentiment_analysis_generic_dataset is a forked repo from huggingface. License: None
Go to file
Seethal Elias 26edc13094 Update README.md 2022-04-19 06:26:33 +00:00
.gitattributes initial commit 2022-04-13 18:37:07 +00:00
README.md Update README.md 2022-04-19 06:26:33 +00:00
config.json Upload config.json 2022-04-13 19:08:21 +00:00
pytorch_model.bin Upload pytorch_model.bin with git-lfs 2022-04-13 20:50:03 +00:00
special_tokens_map.json Upload special_tokens_map.json 2022-04-13 19:09:05 +00:00
tokenizer.json Upload tokenizer.json 2022-04-13 19:09:58 +00:00
tokenizer_config.json Upload tokenizer_config.json 2022-04-13 18:49:43 +00:00
training_args.bin Upload training_args.bin with git-lfs 2022-04-13 18:47:27 +00:00
vocab.txt Upload vocab.txt 2022-04-13 18:41:04 +00:00

README.md

BERT base model (uncased)

Pretrained model on English language using a masked language modeling (MLM) objective. This model is uncased: it does not make a difference between english and English.

Model description

BERT is a transformers model pretrained on a large corpus of English data in a self-supervised fashion. 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. More precisely, it was pretrained with two objectives:

  • Masked language modeling (MLM): taking a sentence, the model randomly masks 15% of the words in the input then run the entire masked sentence through the model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that usually see the words one after the other, or from autoregressive models like GPT which internally mask the future tokens. It allows the model to learn a bidirectional representation of the sentence.

  • Next sentence prediction (NSP): the model concatenates two masked sentences as inputs during pretraining. Sometimes they correspond to sentences that were next to each other in the original text, sometimes not. The model then has to predict if the two sentences were following each other or not. This way, the model learns an inner representation of the English language that can then be used to extract features useful for downstream tasks: if you have a dataset of labeled sentences for instance, you can train a standard classifier using the features produced by the BERT model as inputs.

Model description [Seethal/sentiment_analysis_generic_dataset]

This is a fine-tuned downstream version of the bert-base-uncased model for sentiment analysis, this model is not intended for further downstream fine-tuning for any other tasks. This model is trained on a classified dataset for text classification.