Instructions to use dbernsohn/t5_wikisql_SQL2en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dbernsohn/t5_wikisql_SQL2en with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("dbernsohn/t5_wikisql_SQL2en") model = AutoModelForSeq2SeqLM.from_pretrained("dbernsohn/t5_wikisql_SQL2en") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,6 +29,6 @@ tokenizer.decode(output[0])
|
|
| 29 |
# Output: "What people are older than 10?"
|
| 30 |
```
|
| 31 |
|
| 32 |
-
The whole training process and hyperparameters are in my [GitHub repo](https://github.com/DorBernsohn/SQLM)
|
| 33 |
|
| 34 |
> Created by [Dor Bernsohn](https://www.linkedin.com/in/dor-bernsohn-70b2b1146/)
|
|
|
|
| 29 |
# Output: "What people are older than 10?"
|
| 30 |
```
|
| 31 |
|
| 32 |
+
The whole training process and hyperparameters are in my [GitHub repo](https://github.com/DorBernsohn/CodeLM/tree/main/SQLM)
|
| 33 |
|
| 34 |
> Created by [Dor Bernsohn](https://www.linkedin.com/in/dor-bernsohn-70b2b1146/)
|