--- language: - "tr" tags: - "turkish" - "token-classification" - "pos" - "dependency-parsing" base_model: 99eren99/ModernBERT-base-Turkish-uncased-mlm datasets: - "universal_dependencies" license: "apache-2.0" pipeline_tag: "token-classification" --- # modernbert-base-turkish-ud-embeds ## Model Description This is a ModernBERT model for POS-tagging and dependency-parsing, derived from [ModernBERT-base-Turkish-uncased-mlm](https://huggingface.co/99eren99/ModernBERT-base-Turkish-uncased-mlm). ## How to Use ```py from transformers import pipeline nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-base-turkish-ud-embeds",trust_remote_code=True) print(nlp("Ay dağın diğer tarafında yükseldi")) ```