{} | |
# 軽量なエラー診断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: | |
``` | |
構文エラー、つまり文法的に書き方が間違っています。 | |
``` | |