File size: 754 Bytes
2155145 6b7e88c 2155145 6b7e88c 2155145 6b7e88c 2155145 6b7e88c 2155145 6b7e88c 3797f17 6b7e88c 1430d7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
{}
---
# 軽量なエラー診断AIモデル(80M)
エラー発生行のコードとエラーメッセージから、エラー解決のヒントを提供するモデル
## Model Description
軽量mT5 ([kkuramitsu/mt5-mini9L](https://huggingface.co/kkuramitsu/mt5-mini9L)) をベースに、
独自に開発した[エラー診断コーパス](https://github.com/shiontendon/error_diagnosis/)を学習しています
### Input & Output
入力は、`{エラー発生行のコード}<sep>{エラーメッセージ}` になります
Input Example:
```
def calc(s:str+t:str)->float:<sep>SyntaxError: invalid syntax (<ipython-input>, line 1)
```
Output Example:
```
構文エラー、つまり文法的に書き方が間違っています。
```
|