Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+):
Clone this repository and install COMBO (we suggest creating a virtualenv/conda environment with Python 3.6+, as a bundle of required packages will be installed):
Pre-trained models are available [here](http://mozart.ipipan.waw.pl/~mklimaszewski/models/).
COMBO provides pre-trained models for:
- morphosyntactic prediction (i.e. part-of-speech tagging, morphosyntactic analysis, lemmatisation and dependency parsing) trained on the treebanks from [Universal Dependencies repository](https://universaldependencies.org),
The downloaded model should be passed as a parameter for COMBO (see [prediction doc](prediction.md)).
## Automatic download
## Automatic download
Python `from_pretrained` method will download the pre-trained model if the provided name (without the extension .tar.gz) matches one of the names in [here](http://mozart.ipipan.waw.pl/~mklimaszewski/models/).
The pre-trained models can be downloaded automatically with the Python `from_pretrained` method. Select a model name (without the extension .tar.gz) from the list of [pre-trained models](http://mozart.ipipan.waw.pl/~mklimaszewski/models/) and pass the name as the attribute to `from_pretrained` method:
```python
```python
fromcombo.predictimportCOMBO
fromcombo.predictimportCOMBO
nlp=COMBO.from_pretrained("polish-herbert-base")
nlp=COMBO.from_pretrained("polish-herbert-base")
```
```
Otherwise it looks for a model in local env.
If the model name doesn't match any model on the list of [pre-trained models](http://mozart.ipipan.waw.pl/~mklimaszewski/models/), COMBO looks for a model in local env.
## Console prediction/Local model
If you want to use the console version of COMBO, you need to download a pre-trained model manually