prashantksharma
commited on
Commit
·
54fefb1
1
Parent(s):
2f7b452
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: mit
|
3 |
tags:
|
4 |
- generated_from_trainer
|
@@ -55,7 +57,19 @@ It achieves the following results on the evaluation set:
|
|
55 |
|
56 |
## Model description
|
57 |
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
## Intended uses & limitations
|
61 |
|
@@ -63,7 +77,8 @@ More information needed
|
|
63 |
|
64 |
## Training and evaluation data
|
65 |
|
66 |
-
|
|
|
67 |
|
68 |
## Training procedure
|
69 |
|
|
|
1 |
---
|
2 |
+
model_creators:
|
3 |
+
- Leonardo Zilio, Hadeel Saadany, Prashant Sharma, Diptesh Kanojia, Constantin Orasan
|
4 |
license: mit
|
5 |
tags:
|
6 |
- generated_from_trainer
|
|
|
57 |
|
58 |
## Model description
|
59 |
|
60 |
+
RoBERTa is a transformers model pretrained on a large corpus of English data in a self-supervised fashion. This means
|
61 |
+
it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of
|
62 |
+
publicly available data) with an automatic process to generate inputs and labels from those texts.
|
63 |
+
|
64 |
+
More precisely, it was pretrained with the Masked language modeling (MLM) objective. Taking a sentence, the model
|
65 |
+
randomly masks 15% of the words in the input then run the entire masked sentence through the model and has to predict
|
66 |
+
the masked words. This is different from traditional recurrent neural networks (RNNs) that usually see the words one
|
67 |
+
after the other, or from autoregressive models like GPT which internally mask the future tokens. It allows the model to
|
68 |
+
learn a bidirectional representation of the sentence.
|
69 |
+
|
70 |
+
This way, the model learns an inner representation of the English language that can then be used to extract features
|
71 |
+
useful for downstream tasks: if you have a dataset of labeled sentences for instance, you can train a standard
|
72 |
+
classifier using the features produced by the BERT model as inputs.
|
73 |
|
74 |
## Intended uses & limitations
|
75 |
|
|
|
77 |
|
78 |
## Training and evaluation data
|
79 |
|
80 |
+
The model is fine-tuned using [PLOD-Unfiltered](https://huggingface.co/datasets/surrey-nlp/PLOD-unfiltered) dataset.
|
81 |
+
This dataset is used for training and evaluating the model. The PLOD Dataset is published at LREC 2022. The dataset can help build sequence labeling models for the task of Abbreviation Detection.
|
82 |
|
83 |
## Training procedure
|
84 |
|