spaCy NER Model for MLA Citations
This spaCy model was trained to extract authors, journal titles, and publication dates from MLA-style academic citations.
It is intended for educational and research purposes in natural language processing and citation parsing.
How to use
import spacy
nlp = spacy.load("LipingWang/spaCy-NER-MLA-Citations")
doc = nlp("Devedzic, Vladan. 'Education and the semantic web.' International Journal of Artificial Intelligence in Education 14.2 (2004): 165โ191.")
for ent in doc.ents:
print(ent.text, ent.label_)
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support