Add README.md
Browse files
README.md
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: "ja"
|
3 |
+
tags:
|
4 |
+
- "byt5"
|
5 |
+
- "text2text-generation"
|
6 |
+
- "seq2seq"
|
7 |
+
license: "cc-by-sa-3.0"
|
8 |
+
datasets:
|
9 |
+
- "wikipedia"
|
10 |
+
- "oscar"
|
11 |
+
- "cc100"
|
12 |
+
---
|
13 |
+
|
14 |
+
# 日本語ByT5事前学習済みモデル
|
15 |
+
|
16 |
+
This is a [ByT5 (a tokenizer-free extension of the Text-to-Text Transfer Transformer)](https://github.com/google-research/byt5/) model pretrained on Japanese corpus.
|
17 |
+
|
18 |
+
次の日本語コーパスを用いて事前学習を行ったByT5 (a tokenizer-free extension of the Text-to-Text Transfer Transformer) モデルです。
|
19 |
+
|
20 |
+
* [Wikipedia](https://ja.wikipedia.org)の日本語ダンプデータ (2020年7月6日時点のもの)
|
21 |
+
* [OSCAR](https://oscar-corpus.com)の日本語コーパス
|
22 |
+
* [CC-100](http://data.statmt.org/cc-100/)の日本語コーパス
|
23 |
+
|
24 |
+
このモデルは事前学習のみを行なったものであり、特定のタスクに利用するにはファインチューニングする必要があります。
|
25 |
+
本モデルにも、大規模コーパスを用いた言語モデルにつきまとう、学習データの内容の偏りに由来する偏った(倫理的ではなかったり、有害だったり、バイアスがあったりする)出力結果になる問題が潜在的にあります。
|
26 |
+
この問題が発生しうることを想定した上で、被害が発生しない用途にのみ利用するよう気をつけてください。
|
27 |
+
|
28 |
+
|
29 |
+
# 転移学習のサンプルコード
|
30 |
+
|
31 |
+
準備中
|
32 |
+
|
33 |
+
|
34 |
+
# ベンチマーク
|
35 |
+
|
36 |
+
livedoorニュースコーパスを用いたニュース記事のジャンル予測タスクの精度は次の通りです。
|
37 |
+
|
38 |
+
日本語T5 ([byt5-small-japanese](https://huggingface.co/sonoisa/byt5-small-japanese), パラメータ数は299M)
|
39 |
+
|
40 |
+
| label | precision | recall | f1-score | support |
|
41 |
+
| ----------- | ----------- | ------- | -------- | ------- |
|
42 |
+
| 0 | 0.94 | 0.89 | 0.91 | 130 |
|
43 |
+
| 1 | 0.93 | 0.94 | 0.93 | 121 |
|
44 |
+
| 2 | 0.88 | 0.93 | 0.90 | 123 |
|
45 |
+
| 3 | 0.90 | 0.87 | 0.88 | 82 |
|
46 |
+
| 4 | 0.95 | 0.95 | 0.95 | 129 |
|
47 |
+
| 5 | 0.94 | 0.95 | 0.94 | 141 |
|
48 |
+
| 6 | 0.98 | 0.96 | 0.97 | 127 |
|
49 |
+
| 7 | 0.98 | 0.98 | 0.98 | 127 |
|
50 |
+
| 8 | 0.97 | 0.97 | 0.97 | 120 |
|
51 |
+
| accuracy | | | 0.94 | 1100 |
|
52 |
+
| macro avg | 0.94 | 0.94 | 0.94 | 1100 |
|
53 |
+
| weighted avg | 0.94 | 0.94 | 0.94 | 1100 |
|
54 |
+
|
55 |
+
|
56 |
+
比較対象: 多言語T5 ([google/byt5-small](https://huggingface.co/google/byt5-small), パラメータ数は299M)
|
57 |
+
|
58 |
+
| label | precision | recall | f1-score | support |
|
59 |
+
| ----------- | ----------- | ------- | -------- | ------- |
|
60 |
+
| 0 | 0.93 | 0.88 | 0.91 | 130 |
|
61 |
+
| 1 | 0.90 | 0.79 | 0.84 | 121 |
|
62 |
+
| 2 | 0.75 | 0.86 | 0.80 | 123 |
|
63 |
+
| 3 | 0.87 | 0.79 | 0.83 | 82 |
|
64 |
+
| 4 | 0.93 | 0.96 | 0.94 | 129 |
|
65 |
+
| 5 | 0.87 | 0.95 | 0.91 | 141 |
|
66 |
+
| 6 | 0.98 | 0.93 | 0.96 | 127 |
|
67 |
+
| 7 | 0.97 | 0.91 | 0.94 | 127 |
|
68 |
+
| 8 | 0.89 | 0.94 | 0.91 | 120 |
|
69 |
+
| accuracy | | | 0.90 | 1100 |
|
70 |
+
| macro avg | 0.90 | 0.89 | 0.89 | 1100 |
|
71 |
+
| weighted avg | 0.90 | 0.90 | 0.90 | 1100 |
|
72 |
+
|
73 |
+
|
74 |
+
## 免責事項
|
75 |
+
|
76 |
+
本モデルの作者は本モデルを作成するにあたって、その内容、機能等について細心の注意を払っておりますが、モデルの出力が正確であるかどうか、安全なものであるか等について保証をするものではなく、何らの責任を負うものではありません。本モデルの利用により、万一、利用者に何らかの不都合や損害が発生したとしても、モデルやデータセットの作者や作者の所属組織は何らの責任を負うものではありません。利用者には本モデルやデータセットの作者や所属組織が責任を負わないことを明確にする義務があります。
|
77 |
+
|
78 |
+
|
79 |
+
## ライセンス
|
80 |
+
|
81 |
+
[CC-BY SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/deed.ja)
|
82 |
+
|
83 |
+
[Common Crawlの利用規約](http://commoncrawl.org/terms-of-use/)も守るようご注意ください。
|