--- language: - en license: cc-by-sa-4.0 task_categories: - token-classification - text-classification task_ids: - named-entity-recognition - part-of-speech - parsing tags: - ner - pos - dependency-parsing - dialog-act - multi-task - conllu - spacy - gpt-validated - llm-gold-filtered size_categories: - 100K "1st VERB to the right is the head, relation = nsubj" -2@amod@NOUN -> "2nd NOUN to the left is the head, relation = amod" 0@root@ROOT -> "this token is the root" ``` This reformulation enables dependency parsing as standard token classification (~1,411 unique labels). Decoding back to a tree is O(n) per sentence. ## Full vs Gold: Which Should I Use? | Use Case | Dataset | |----------|---------| | Model training | `corpus/gold/` or `prepared/` | | Corpus linguistics / analysis | `data/` (full corpus) | | Building custom subsamples | `corpus/gold/` | | Evaluation | `prepared/*/ner_dev.json` etc. | The **gold corpus** is a strict subset of the full corpus. Every sentence in gold passed three independent LLM validation checks (NER, CLS, POS). The **prepared data** is a domain-balanced subsample of the gold corpus, ready for model training with label vocabularies. ## Training ```bash git clone https://github.com/rustic-ai/kniv-nlp-models cd kniv-nlp-models # Prepare training data from gold corpus python models/deberta-v3-large-nlp-en/prepare_data.py \ --gold corpus/output/final-gold # Train teacher model (DeBERTa-v3-large, 435M params) python models/deberta-v3-large-nlp-en/train.py # Quick test (1 epoch, 100 samples) python models/deberta-v3-large-nlp-en/train.py --quick-test ``` ## Pipeline ``` collect -> preprocess -> annotate -> validate -> classify -> export -> gold filter (17 src) (dedup, (spaCy (GPT-5.4 (GPT-5.4 (CoNLL-U (Qwen3-8B split, trf) nano) nano) Parquet) vLLM) prev_text) 657K sentences -----------------------------------------------------------> 237K gold ``` ## Source - **Code**: [rustic-ai/kniv-nlp-models](https://github.com/rustic-ai/kniv-nlp-models) - **Models**: [dragonscale-ai on HuggingFace](https://huggingface.co/dragonscale-ai) ## Citation ```bibtex @misc{kniv-corpus-en-2026, title={kniv-corpus-en: Multi-domain English NLP Corpus}, author={Dragonscale AI}, year={2026}, publisher={Hugging Face}, url={https://huggingface.co/datasets/dragonscale-ai/kniv-corpus-en} } ``` ## License CC BY-SA 4.0. All source datasets are commercially licensed (CC BY, CC BY-SA, Apache 2.0, MIT, PSF, public domain, or ODC-BY).