Files changed (1) hide show
  1. README.md +17 -6
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
- エラー診断AIモデル(80M)
9
 
 
10
 
 
11
 
12
- エラー発生行のコードとエラーメッセージからエラー解決のヒントを提供するモデル
 
13
 
14
- 軽量mT5(kkuramitsu/mt5-mini9L)にエラー診断コーパス(https://github.com/shiontendon/error_diagnosis/blob/master/error_diagnostic_corpus.jsonl)を学習
15
 
16
- 入力:エラー発生行のコード\<sep\>エラーメッセージ
 
 
 
 
 
 
 
 
 
 
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