Create README.md c0336f7
Shubham Toshniwal commited on
How to use shtoshni/longformer_coreference_joint with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="shtoshni/longformer_coreference_joint") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("shtoshni/longformer_coreference_joint")
model = AutoModel.from_pretrained("shtoshni/longformer_coreference_joint")