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
|
@@ -5,6 +5,9 @@ datasets:
|
|
| 5 |
- wikisql
|
| 6 |
---
|
| 7 |
|
|
|
|
|
|
|
|
|
|
| 8 |
This is a [t5-small] (https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned version on the [wikisql dataset] (https://huggingface.co/datasets/wikisql).
|
| 9 |
|
| 10 |
The model can be loaded like so:
|
|
|
|
| 5 |
- wikisql
|
| 6 |
---
|
| 7 |
|
| 8 |
+
[Googles T5](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned on [WikiSQL](https://github.com/salesforce/WikiSQL) for **English** to **SQL** **translation**.
|
| 9 |
+
|
| 10 |
+
|
| 11 |
This is a [t5-small] (https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned version on the [wikisql dataset] (https://huggingface.co/datasets/wikisql).
|
| 12 |
|
| 13 |
The model can be loaded like so:
|