How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("token-classification", model="KoichiYasuoka/roberta-base-korean-ud-goeswith")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("KoichiYasuoka/roberta-base-korean-ud-goeswith")
model = AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/roberta-base-korean-ud-goeswith")
Quick Links

roberta-base-korean-ud-goeswith

Model Description

This is a RoBERTa model pre-trained on Korean texts for POS-tagging and dependency-parsing (using goeswith for subwords), derived from roberta-base-korean-hanja.

How to Use

from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/roberta-base-korean-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple")
print(nlp("홍시 맛이 나서 홍시라 생각한다."))
Downloads last month
1
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for KoichiYasuoka/roberta-base-korean-ud-goeswith

Finetuned
(3)
this model

Dataset used to train KoichiYasuoka/roberta-base-korean-ud-goeswith