dbernsohn commited on
Commit
ce0d2b3
·
1 Parent(s): 74713b5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This model has been trained on
2
+
3
+ # t5_wikisql_SQL2en
4
+
5
+ This is the checkpoint for [t5_wikisql_SQL2en](https://huggingface.co/dbernsohn/t5_wikisql_SQL2en) after being fune-tunedon the wikisql dataset on t5-small.
6
+
7
+ The model can be loaded like so:
8
+
9
+ ```python
10
+ from transformers import AutoModelWithLMHead, AutoTokenizer
11
+
12
+ tokenizer = AutoTokenizer.from_pretrained("t5-small")
13
+ model = AutoModelWithLMHead.from_pretrained("/content/model")
14
+ ```
15
+
16
+ You can then use this model to translate SQL queries into plain english.
17
+
18
+ ```python
19
+ input_text = f"translate English to SQL: {query} </s>"
20
+ features = tokenizer([input_text], return_tensors='pt')
21
+
22
+ output = model.generate(input_ids=features['input_ids'],
23
+ attention_mask=features['attention_mask'])
24
+
25
+ tokenizer.decode(output[0])
26
+ ```
27
+
28
+ The whole training process and hyperparameters are in my []GitHub repo] (https://github.com/DorBernsohn)