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