Instructions to use shiontendon/error_diagnostic_model_80M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shiontendon/error_diagnostic_model_80M with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("shiontendon/error_diagnostic_model_80M") model = AutoModelForSeq2SeqLM.from_pretrained("shiontendon/error_diagnostic_model_80M", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
| 16 |
|
| 17 |
入力は、`{エラー発生行のコード}<sep>{エラーメッセージ}` になります
|
| 18 |
|
| 19 |
-
Input
|
| 20 |
```
|
| 21 |
def calc(s:str+t:str)->float:<sep>SyntaxError: invalid syntax (<ipython-input>, line 1)
|
| 22 |
```
|
|
|
|
| 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 |
```
|