Instructions to use ArielUW/pl_hacknationNER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use ArielUW/pl_hacknationNER with spaCy:
!pip install https://huggingface.co/ArielUW/pl_hacknationNER/resolve/main/pl_hacknationNER-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("pl_hacknationNER") # Importing as module. import pl_hacknationNER nlp = pl_hacknationNER.load() - Notebooks
- Google Colab
- Kaggle
| from pathlib import Path | |
| from spacy.util import load_model_from_init_py, get_model_meta | |
| __version__ = get_model_meta(Path(__file__).parent)['version'] | |
| def load(**overrides): | |
| return load_model_from_init_py(__file__, **overrides) | |