File size: 417 Bytes
d43af00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Model description
- Morphosyntactic analyzer: COMBO
- Tagset: UD
- Embedding vectors: HerBERT (wiki)
- 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_combo_ud_herBERT_pdb
```
## Load model
```
from combo.predict import COMBO
model_name = './nlpre_combo_ud_herBERT_pdb'
model = COMBO.from_pretrained(model_name)
``` |