Update README.md
Browse files
README.md
CHANGED
|
@@ -1 +1,28 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
tags:
|
| 5 |
+
- spaCy
|
| 6 |
+
- ner
|
| 7 |
+
- citation
|
| 8 |
+
- academic
|
| 9 |
+
- mla
|
| 10 |
+
model-index:
|
| 11 |
+
- name: spaCy NER for MLA Citations
|
| 12 |
+
results: []
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# spaCy NER Model for MLA Citations
|
| 16 |
+
|
| 17 |
+
This spaCy model was trained to extract **authors**, **journal titles**, and **publication dates** from MLA-style academic citations.
|
| 18 |
+
It is intended for educational and research purposes in natural language processing and citation parsing.
|
| 19 |
+
|
| 20 |
+
## How to use
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
import spacy
|
| 24 |
+
nlp = spacy.load("LipingWang/spaCy-NER-MLA-Citations")
|
| 25 |
+
|
| 26 |
+
doc = nlp("Devedzic, Vladan. 'Education and the semantic web.' International Journal of Artificial Intelligence in Education 14.2 (2004): 165–191.")
|
| 27 |
+
for ent in doc.ents:
|
| 28 |
+
print(ent.text, ent.label_)
|