Views
No views yet
@article{hendrycks2021cuad,
title={CUAD: An Expert-Annotated NLP Dataset for Legal Contract Review},
author={Dan Hendrycks and Collin Burns and Anya Chen and Spencer Ball},
journal={NeurIPS},
year={2021}
}1from transformers import AutoTokenizer, AutoModelForQuestionAnswering
2
3tokenizer = AutoTokenizer.from_pretrained("mgigena/cuad-roberta-base")
4
5model = AutoModelForQuestionAnswering.from_pretrained("mgigena/cuad-roberta-base")