├── .gitignore ├── LICENSE ├── README.md ├── datasets ├── NER │ ├── TNEWSNER │ │ ├── dev.conll │ │ ├── test.conll │ │ └── train.conll │ └── XTREME │ │ ├── dev.conll │ │ ├── extra │ │ ├── test.conll │ │ └── train.conll └── UD │ └── UD_Turkish-BOUN │ ├── LICENCE.txt │ ├── tr_boun-ud-dev.conllu │ ├── tr_boun-ud-test.conllu │ └── tr_boun-ud-train.conllu ├── tr_core_news_lg ├── README.md ├── configs │ ├── assemble.cfg │ ├── ner_cfg.cfg │ └── tagger_cfg.cfg ├── meta.json └── project.yml ├── tr_core_news_md ├── README.md ├── configs │ ├── assemble.cfg │ ├── ner_cfg.cfg │ └── tagger_cfg.cfg ├── meta.json └── project.yml ├── tr_core_news_trf ├── README.md ├── configs │ ├── assemble.cfg │ ├── ner_cfg.cfg │ └── tagger_cfg.cfg ├── meta.json └── project.yml ├── tr_vectors_web_lg ├── README.md └── project.yml └── tr_vectors_web_md ├── README.md └── project.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/README.md -------------------------------------------------------------------------------- /datasets/NER/TNEWSNER/dev.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/TNEWSNER/dev.conll -------------------------------------------------------------------------------- /datasets/NER/TNEWSNER/test.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/TNEWSNER/test.conll -------------------------------------------------------------------------------- /datasets/NER/TNEWSNER/train.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/TNEWSNER/train.conll -------------------------------------------------------------------------------- /datasets/NER/XTREME/dev.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/XTREME/dev.conll -------------------------------------------------------------------------------- /datasets/NER/XTREME/extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/XTREME/extra -------------------------------------------------------------------------------- /datasets/NER/XTREME/test.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/XTREME/test.conll -------------------------------------------------------------------------------- /datasets/NER/XTREME/train.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/NER/XTREME/train.conll -------------------------------------------------------------------------------- /datasets/UD/UD_Turkish-BOUN/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/UD/UD_Turkish-BOUN/LICENCE.txt -------------------------------------------------------------------------------- /datasets/UD/UD_Turkish-BOUN/tr_boun-ud-dev.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/UD/UD_Turkish-BOUN/tr_boun-ud-dev.conllu -------------------------------------------------------------------------------- /datasets/UD/UD_Turkish-BOUN/tr_boun-ud-test.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/UD/UD_Turkish-BOUN/tr_boun-ud-test.conllu -------------------------------------------------------------------------------- /datasets/UD/UD_Turkish-BOUN/tr_boun-ud-train.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/datasets/UD/UD_Turkish-BOUN/tr_boun-ud-train.conllu -------------------------------------------------------------------------------- /tr_core_news_lg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/README.md -------------------------------------------------------------------------------- /tr_core_news_lg/configs/assemble.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/configs/assemble.cfg -------------------------------------------------------------------------------- /tr_core_news_lg/configs/ner_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/configs/ner_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_lg/configs/tagger_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/configs/tagger_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_lg/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/meta.json -------------------------------------------------------------------------------- /tr_core_news_lg/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_lg/project.yml -------------------------------------------------------------------------------- /tr_core_news_md/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/README.md -------------------------------------------------------------------------------- /tr_core_news_md/configs/assemble.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/configs/assemble.cfg -------------------------------------------------------------------------------- /tr_core_news_md/configs/ner_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/configs/ner_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_md/configs/tagger_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/configs/tagger_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_md/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/meta.json -------------------------------------------------------------------------------- /tr_core_news_md/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_md/project.yml -------------------------------------------------------------------------------- /tr_core_news_trf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/README.md -------------------------------------------------------------------------------- /tr_core_news_trf/configs/assemble.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/configs/assemble.cfg -------------------------------------------------------------------------------- /tr_core_news_trf/configs/ner_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/configs/ner_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_trf/configs/tagger_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/configs/tagger_cfg.cfg -------------------------------------------------------------------------------- /tr_core_news_trf/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/meta.json -------------------------------------------------------------------------------- /tr_core_news_trf/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_core_news_trf/project.yml -------------------------------------------------------------------------------- /tr_vectors_web_lg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_vectors_web_lg/README.md -------------------------------------------------------------------------------- /tr_vectors_web_lg/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_vectors_web_lg/project.yml -------------------------------------------------------------------------------- /tr_vectors_web_md/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_vectors_web_md/README.md -------------------------------------------------------------------------------- /tr_vectors_web_md/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkish-nlp-suite/turkish-spacy-models/HEAD/tr_vectors_web_md/project.yml --------------------------------------------------------------------------------