Fill-Mask
Transformers
PyTorch
English
roberta
Machine Learning
Research Papers
Scientific Language Model
Instructions to use shrutisingh/MLRoBERTa with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shrutisingh/MLRoBERTa with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="shrutisingh/MLRoBERTa")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("shrutisingh/MLRoBERTa") model = AutoModelForMaskedLM.from_pretrained("shrutisingh/MLRoBERTa") - Notebooks
- Google Colab
- Kaggle
File size: 937 Bytes
175b8a3 cceb620 175b8a3 cceb620 3de8c42 175b8a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ---
language:
- en
tags:
- Machine Learning
- Research Papers
- Scientific Language Model
license: apache-2.0
---
## MLRoBERTa (RoBERTa pretrained on ML Papers)
## How to use:
```
from transformers import AutoTokenizer, AutoModel
tok = AutoTokenizer.from_pretrained('shrutisingh/MLRoBERTa')
model = AutoModel.from_pretrained('shrutisingh/MLRoBERTa')
```
## Pretraining Details:
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.
## Citation:
```
@inproceedings{singh2021compare,
title={COMPARE: a taxonomy and dataset of comparison discussions in peer reviews},
author={Singh, Shruti and Singh, Mayank and Goyal, Pawan},
booktitle={2021 ACM/IEEE Joint Conference on Digital Libraries (JCDL)},
pages={238--241},
year={2021},
organization={IEEE}
}
``` |