What
製品に対するユーザーからのフィードバックを改善要望
と感想
の二値に振り分ける分類モデルです。
bert-base-japanese
をファインチューニングして作成しています。
Usage
from transformers import AutoTokenizer, AutoModelForSequenceClassification
from transformers import pipeline
tokenizer = AutoTokenizer.from_pretrained("hfunakura/bert-feedback-classifier")
model = AutoModelForSequenceClassification.from_pretrained("hfunakura/bert-feedback-classifier")
classifier = pipeline(
"text-classification",
model=model,
tokenizer=tokenizer
)
classifier("アプリが頻繁にクラッシュするので使いづらいです。")
- Downloads last month
- 105
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.
Model tree for hfunakura/bert-feedback-classifier
Base model
tohoku-nlp/bert-base-japanese