Instructions to use joonhan/roberta-roa with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use joonhan/roberta-roa with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="joonhan/roberta-roa")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("joonhan/roberta-roa") model = AutoModelForTokenClassification.from_pretrained("joonhan/roberta-roa") - Notebooks
- Google Colab
- Kaggle
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
- Fine-tunning "KLUE/roberta-large" model For CER(Company Entity Recognition) With Custom Dataset
- Custom Datasets are composed of news data
label_list = ['O',"B-PER","I-PER","B-ORG","I-ORG","B-COM","I-COM","B-LOC","I-LOC","B-DAT","I-DAT","B-TIM","I-TIM","B-QNT","I-QNT"]
refer_list = ['0','1','2','3','4','5','6','7','8','9','10','11','12','13','14']
- EX: "B-PER" : 1 , "B-COM" : 5
- Downloads last month
- 11