Update README.md
Browse files
README.md
CHANGED
|
@@ -26,8 +26,8 @@ output = model.generate(input_ids=features['input_ids'].cuda(),
|
|
| 26 |
attention_mask=features['attention_mask'].cuda())
|
| 27 |
|
| 28 |
tokenizer.decode(output[0])
|
|
|
|
| 29 |
```
|
| 30 |
-
Output: "SELECT Name FROM table WHERE Country = USA"
|
| 31 |
|
| 32 |
The whole training process and hyperparameters are in my [GitHub repo](https://github.com/DorBernsohn/SQLM)
|
| 33 |
|
|
|
|
| 26 |
attention_mask=features['attention_mask'].cuda())
|
| 27 |
|
| 28 |
tokenizer.decode(output[0])
|
| 29 |
+
# Output: "SELECT Name FROM table WHERE Country = USA"
|
| 30 |
```
|
|
|
|
| 31 |
|
| 32 |
The whole training process and hyperparameters are in my [GitHub repo](https://github.com/DorBernsohn/SQLM)
|
| 33 |
|