ryo0634 commited on
Commit
48d1ec4
1 Parent(s): 80f8ae0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ja
4
+ license: apache-2.0
5
+ library_name: transformers
6
+ datasets:
7
+ - llm-book/JGLUE
8
+ pipeline_tag: sentence-similarity
9
+ ---
10
+
11
+ # bert-base-japanese-v3-jsts
12
+
13
+ 「[大規模言語モデル入門](https://www.amazon.co.jp/dp/4297136333)」の第5章で紹介している(意味類似度計算)のモデルです。
14
+ [cl-tohoku/bert-base-japanese-v3](https://huggingface.co/cl-tohoku/bert-base-japanese-v3)を[JGLUE](https://huggingface.co/datasets/llm-book/JGLUE)のJSTSデータセットでファインチューニングして構築されています。
15
+
16
+ ## 関連リンク
17
+
18
+ * [GitHubリポジトリ](https://github.com/ghmagazine/llm-book)
19
+ * [Colabノートブック(訓練)](https://colab.research.google.com/github/ghmagazine/llm-book/blob/main/chapter5/5-4-sts-finetuning.ipynb)
20
+ * [Colabノートブック(推論)](https://colab.research.google.com/github/ghmagazine/llm-book/blob/main/chapter5/5-4-sts-analysis.ipynb)
21
+ * [データセット](https://huggingface.co/datasets/llm-book/JGLUE)
22
+ * [大規模言語モデル入門(Amazon.co.jp)](https://www.amazon.co.jp/dp/4297136333/)
23
+ * [大規模言語モデル入門(gihyo.jp)](https://gihyo.jp/book/2023/978-4-297-13633-8)
24
+
25
+ ## 使い方
26
+ ```python
27
+ from transformers import pipeline
28
+
29
+ text_sim_pipeline = pipeline(
30
+ model="llm-book/bert-base-japanese-v3-jsts",
31
+ function_to_apply="none",
32
+ )
33
+ text = "川べりでサーフボードを持った人たちがいます"
34
+ sim_text = "サーファーたちが川べりに立っています"
35
+ # textとsim_textの類似度を計算
36
+ result = text_sim_pipeline({"text": text, "text_pair": sim_text})
37
+ print(result["score"])
38
+ # 3.5703558921813965
39
+ ```
40
+
41
+ ## ライセンス
42
+
43
+ [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)