Views
No views yet
allenai/scibert_scivocab_uncased fine-tuned as a binary classifier of citation intent: does a citation sentence cite prior work as background (BACKGROUND) or for any other reason (NOT_BACKGROUND)?| id | label | meaning |
|---|---|---|
| 0 | NOT_BACKGROUND | citation used for method, comparison, extension, motivation… |
| 1 | BACKGROUND | citation provides background/context for the citing paper |
1from transformers import pipeline
2
3clf = pipeline("text-classification", model="hongccccccc/scibert-citation-background-classifier")
4clf("Deep learning has achieved remarkable success in many NLP tasks [1, 2].")
5# [{'label': 'BACKGROUND', 'score': ...}]BertForSequenceClassification, single-label, 2 classes)BACKGROUNDtransformers 4.32.0