Update README.md
#1
by
artms007
- opened
README.md
CHANGED
@@ -1,17 +1,28 @@
|
|
1 |
---
|
2 |
-
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/modelcard.md?plain=1
|
3 |
-
# Doc / guide: https://huggingface.co/docs/hub/model-cards
|
4 |
{}
|
5 |
---
|
6 |
|
7 |
|
8 |
-
|
9 |
|
|
|
10 |
|
|
|
11 |
|
12 |
-
|
|
|
13 |
|
14 |
-
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
|
|
1 |
---
|
|
|
|
|
2 |
{}
|
3 |
---
|
4 |
|
5 |
|
6 |
+
# 軽量なエラー診断AIモデル(80M)
|
7 |
|
8 |
+
エラー発生行のコードとエラーメッセージから、エラー解決のヒントを提供するモデル
|
9 |
|
10 |
+
## Model Description
|
11 |
|
12 |
+
軽量mT5 ([kkuramitsu/mt5-mini9L](https://huggingface.co/kkuramitsu/mt5-mini9L)) をベースに、
|
13 |
+
独自に開発した[エラー診断コーパス](https://github.com/shiontendon/error_diagnosis/)を学習しています
|
14 |
|
15 |
+
### Input & Output
|
16 |
|
17 |
+
入力は、`{エラー発生行のコード}<sep>{エラーメッセージ}` になります
|
18 |
+
|
19 |
+
Input Example:
|
20 |
+
```
|
21 |
+
def calc(s:str+t:str)->float:<sep>SyntaxError: invalid syntax (<ipython-input>, line 1)
|
22 |
+
```
|
23 |
+
|
24 |
+
Output Example:
|
25 |
+
```
|
26 |
+
構文エラー、つまり文法的に書き方が間違っています。
|
27 |
+
```
|
28 |
|