theatticusproject/cuad-qa
Updated • 2.05k • 66
This model is a fine-tuned version of RoBERTa on the CUAD dataset for extracting 6 key clause types from legal contracts:
from transformers import pipeline
qa_pipeline = pipeline("question-answering", model="srraghuram/roberta-cuad-clause-extraction")
result = qa_pipeline( question="Highlight the parts related to Governing Law", context="Your contract text here..." ) print(result)