--- language: - "tr" tags: - "turkish" - "token-classification" - "pos" - "dependency-parsing" base_model: TURKCELL/roberta-base-turkish-uncased datasets: - "universal_dependencies" license: "mit" pipeline_tag: "token-classification" --- # roberta-base-turkish-ud-goeswith ## Model Description This is a RoBERTa model for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [roberta-base-turkish-uncased](https://huggingface.co/TURKCELL/roberta-base-turkish-uncased). ## How to Use ```py from transformers import pipeline nlp=pipeline("universal-dependencies","KoichiYasuoka/roberta-base-turkish-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple") print(nlp("Ay dağın diğer tarafında yükseldi")) ```