File size: 395 Bytes
aaf48a8 78419ac aaf48a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Model description
- Morphosyntactic analyzer: Spacy
- Tagset: UD
- Embedding vectors: Fasttext
- Dataset: PDB (http://git.nlp.ipipan.waw.pl/alina/PDBUD/tree/master/PDB-UD/PDB-UD)
# How to use
## Clone
```
git clone git@hf.co:ipipan/nlpre_spacy_ud_fasttext_pdb
```
## Load model
```
import spacy
model_name = './nlpre_spacy_ud_fasttext_pdb/model-best'
model = spacy.load(model_name)
```
|