Update README.md
Browse files
README.md
CHANGED
@@ -41,8 +41,8 @@ To use the model for text-to-SQL conversion, you can load it using the `transfor
|
|
41 |
```python
|
42 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
43 |
|
44 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
45 |
-
model = AutoModelForCausalLM.from_pretrained("
|
46 |
|
47 |
# Input prompt
|
48 |
query = "What is the total number of hospital beds in each state?"
|
|
|
41 |
```python
|
42 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
43 |
|
44 |
+
tokenizer = AutoTokenizer.from_pretrained("Ellbendls/Qwen-2.5-3b-Text_to_SQL-GGUF")
|
45 |
+
model = AutoModelForCausalLM.from_pretrained("Ellbendls/Qwen-2.5-3b-Text_to_SQL-GGUF")
|
46 |
|
47 |
# Input prompt
|
48 |
query = "What is the total number of hospital beds in each state?"
|