├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── gliner-spacy-0.0.3.tar.gz ├── gliner-spacy-0.0.5.tar.gz └── gliner-spacy-0.0.6.tar.gz ├── examples ├── example_tokenization_pipeline.ipynb └── gliner_cat │ ├── data │ └── testimony.txt │ └── gliner_cat_demo.ipynb ├── gliner_spacy.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt ├── gliner_spacy ├── __init__.py ├── pipeline.py └── version.py ├── requirements.txt └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/README.md -------------------------------------------------------------------------------- /dist/gliner-spacy-0.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/dist/gliner-spacy-0.0.3.tar.gz -------------------------------------------------------------------------------- /dist/gliner-spacy-0.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/dist/gliner-spacy-0.0.5.tar.gz -------------------------------------------------------------------------------- /dist/gliner-spacy-0.0.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/dist/gliner-spacy-0.0.6.tar.gz -------------------------------------------------------------------------------- /examples/example_tokenization_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/examples/example_tokenization_pipeline.ipynb -------------------------------------------------------------------------------- /examples/gliner_cat/data/testimony.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/examples/gliner_cat/data/testimony.txt -------------------------------------------------------------------------------- /examples/gliner_cat/gliner_cat_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/examples/gliner_cat/gliner_cat_demo.ipynb -------------------------------------------------------------------------------- /gliner_spacy.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/gliner_spacy.egg-info/PKG-INFO -------------------------------------------------------------------------------- /gliner_spacy.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/gliner_spacy.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /gliner_spacy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gliner_spacy.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/gliner_spacy.egg-info/entry_points.txt -------------------------------------------------------------------------------- /gliner_spacy.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | spacy>=3.0.0 2 | gliner>=0.2.0 3 | seaborn 4 | matplotlib 5 | numpy 6 | -------------------------------------------------------------------------------- /gliner_spacy.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gliner_spacy 2 | -------------------------------------------------------------------------------- /gliner_spacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/gliner_spacy/__init__.py -------------------------------------------------------------------------------- /gliner_spacy/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/gliner_spacy/pipeline.py -------------------------------------------------------------------------------- /gliner_spacy/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.10" 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spacy 2 | gliner 3 | seaborn 4 | matplotlib -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theirstory/gliner-spacy/HEAD/setup.py --------------------------------------------------------------------------------