Commit
·
175b8a3
1
Parent(s):
d817ac5
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- Machine Learning
|
6 |
+
- Research Papers
|
7 |
+
- Scientific Language Model
|
8 |
+
---
|
9 |
+
|
10 |
+
## How to use:
|
11 |
+
```
|
12 |
+
from transformers import AutoTokenizer, AutoModel
|
13 |
+
tok = AutoTokenizer.from_pretrained('shrutisingh/MLRoBERTa')
|
14 |
+
model = AutoModel.from_pretrained('shrutisingh/MLRoBERTa')
|
15 |
+
```
|
16 |
+
|
17 |
+
## Pretraining Details:
|
18 |
+
This is a RoBERTa model trained on scientific documents. The dataset is composed of NeurIPS (1987-2019), CVPR (2013-2020), ICLR (2016-2020), ACL Anthology data (till 2019) paper title and abstracts, and ICLR paper reviews.
|
19 |
+
|
20 |
+
## Citation:
|
21 |
+
```
|
22 |
+
@inproceedings{singh2021compare,
|
23 |
+
title={COMPARE: a taxonomy and dataset of comparison discussions in peer reviews},
|
24 |
+
author={Singh, Shruti and Singh, Mayank and Goyal, Pawan},
|
25 |
+
booktitle={2021 ACM/IEEE Joint Conference on Digital Libraries (JCDL)},
|
26 |
+
pages={238--241},
|
27 |
+
year={2021},
|
28 |
+
organization={IEEE}
|
29 |
+
}
|
30 |
+
```
|