wldn/korean-text-classification-model
06
Korean Text Classification Model
Base model: beomi/KcELECTRA-base
This model was fine-tuned with Hugging Face Transformers Trainer.
Labels
??
Inference Example
from transformers import pipeline
repoid = "YOURUSERNAME/YOURREPONAME"
classifier = pipeline( "text-classification", model=repoid, tokenizer=repoid )
classifier("여기에 분류할 문장을 입력하세요.")
