--- language: - "bo" tags: - "tibetan" - "token-classification" - "pos" base_model: UTibetNLP/tibetan_bert license: "apache-2.0" pipeline_tag: "token-classification" --- # tibetan-bert-base-upos ## Model Description This is a BERT model for POS-tagging, derived from [tibetan_bert](https://huggingface.co/UTibetNLP/tibetan_bert). Every word is tagged by [UPOS](https://universaldependencies.org/u/pos/) (Universal Part-Of-Speech). ## How to Use ```py from transformers import pipeline nlp=pipeline("upos","KoichiYasuoka/tibetan-bert-base-upos",trust_remote_code=True,aggregation_strategy="simple") ```