--- language: - "cop" tags: - "coptic" - "token-classification" - "pos" - "dependency-parsing" base_model: KoichiYasuoka/deberta-base-coptic datasets: - "universal_dependencies" license: "cc-by-sa-4.0" pipeline_tag: "token-classification" widget: - text: "ⲧⲉⲛⲟⲩⲇⲉⲛ̄ⲟⲩⲟⲉⲓⲛϩ︤ⲙ︥ⲡϫⲟⲉⲓⲥ·" --- # deberta-base-coptic-ud-goeswith ## Model Description This is a DeBERTa(V2) model pre-trained on Coptic Scriptorium Corpora for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [deberta-base-coptic](https://huggingface.co/KoichiYasuoka/deberta-base-coptic). ## How to Use ```py from transformers import pipeline nlp=pipeline("universal-dependencies","KoichiYasuoka/deberta-base-coptic-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple") print(nlp("ⲧⲉⲛⲟⲩⲇⲉⲛ̄ⲟⲩⲟⲉⲓⲛϩ︤ⲙ︥ⲡϫⲟⲉⲓⲥ·")) ```