--- 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 size_categories: - 100K` comment in each sentence: | Label | Action in uniko | Example | |-------|----------------|---------| | `inform` | Extract observation | *"Revenue grew 15% last quarter"* | | `correction` | Flag knowledge for update | *"No, it was actually Tuesday"* | | `agreement` | Reinforce observation | *"Yes, exactly"* | | `question` | Record knowledge gap | *"Where is the report?"* | | `plan_commit` | Link to Goal/Task | *"I'll send it tomorrow"* | | `request` | Create action node | *"Show me the data"* | | `feedback` | Skip extraction | *"OK"*, *"Got it"* | | `social` | Skip extraction | *"Hi"*, *"Thanks"* | | `filler` | Skip entirely | *"Um"*, *"Well"* | ### CoNLL-U Format Each sentence has metadata comments followed by token rows: ``` # sent_id = business-000042 # text = Apple reported $394B revenue in Q4. # cls = inform 1 Apple apple PROPN NNP _ 2 nsubj _ NER=B-ORG 2 reported report VERB VBD _ 0 root _ _ 3 $394B $394b NUM CD _ 2 obj _ NER=B-MONEY 4 revenue revenue NOUN NN _ 3 appos _ _ 5 in in ADP IN _ 6 case _ _ 6 Q4 q4 PROPN NNP _ 2 obl _ NER=B-DATE 7 . . PUNCT . _ 2 punct _ _ ``` Columns: ID, FORM, LEMMA, UPOS, XPOS, FEATS, HEAD, DEPREL, DEPS, MISC ## Usage ```python import conllu from huggingface_hub import hf_hub_download # Download a split path = hf_hub_download("dragonscale-ai/kniv-corpus-en", "train.conllu", repo_type="dataset") with open(path) as f: sentences = conllu.parse(f.read()) for sent in sentences[:3]: # Metadata print(f"Text: {sent.metadata['text']}") print(f"CLS: {sent.metadata.get('cls', 'N/A')}") # Tokens for token in sent: ner = token.get("misc", {}) ner_tag = ner.get("NER", "O") if isinstance(ner, dict) else "O" print(f" {token['form']:20s} POS={token['upos']:6s} DEP={token['deprel']:12s} NER={ner_tag}") print() ``` ## Source - **Training code:** [rustic-ai/kniv-nlp-models](https://github.com/rustic-ai/kniv-nlp-models) - **Trained models:** [dragonscale-ai on HuggingFace](https://huggingface.co/dragonscale-ai) ## Citation ```bibtex @misc{kniv-corpus-en, title={kniv-corpus-en: Multi-domain NLP Corpus for English}, author={Dragonscale AI}, year={2026}, publisher={Hugging Face}, url={https://huggingface.co/datasets/dragonscale-ai/kniv-corpus-en} } ``` ## License CC BY-SA 4.0. Individual domain source licenses are listed in the domains table above and in the [source repository](https://github.com/rustic-ai/kniv-nlp-models/tree/main/corpus/domains).