update the model with the latest version 10530f5
dobbytk commited on
How to use dobbytk/KSL-BERT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="dobbytk/KSL-BERT") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("dobbytk/KSL-BERT")
model = AutoModelForMaskedLM.from_pretrained("dobbytk/KSL-BERT")