ryo0634's picture
Upload README.md with huggingface_hub
7b47edf
|
raw
history blame
1.62 kB
metadata
language:
  - ja
license: apache-2.0
library_name: transformers
datasets:
  - llm-book/JGLUE
pipeline_tag: text-classification

bert-base-japanese-v3-marc_ja

大規模言語モデル入門」の第5章で紹介している(感情分析)のモデルです。 cl-tohoku/bert-base-japanese-v3JGLUEのMARC-jaデータセットでファインチューニングして構築されています。

関連リンク

使い方

from transformers import pipeline

text_classification_pipeline = pipeline(model="llm-book/bert-base-japanese-v3-marc_ja")
print(text_classification_pipeline("世界には言葉がわからなくても感動する音楽がある。")[0])
# {'label': 'positive', 'score': 0.9993619322776794}

ライセンス

Apache License 2.0