The
Citation Pre-Screening model is part of the
Citation Parser package and is fine-tuned for classifying citation texts as valid or invalid. This model, based on
DistilBERT, is specifically designed for automated citation processing workflows, making it an essential component of the
Citation Parser tool for citation metadata extraction and validation.
This model is intended to classify raw citation text as either a valid or invalid citation based on the provided input. It is ideal for automating the pre-screening process in citation databases or manuscript workflows.
1from transformers import pipeline
2
3# Load the model
4citation_classifier = pipeline("text-classification", model="sirisacademic/citation-pre-screening")
5
6# Example citation text
7citation_text = "MURAKAMI, H等: 'Unique thermal behavior of acrylic PSAs bearing long alkyl side groups and crosslinked by aluminum chelate', 《EUROPEAN POLYMER JOURNAL》"
8
9# Classify the citation
10result = citation_classifier(citation_text)
11print(result)
The model's performance was evaluated on the test set, and the following results were obtained:
This work is distributed under a
Apache License, Version 2.0.