Update README.md
Browse files
README.md
CHANGED
@@ -63,7 +63,7 @@ Use the code below to get started with the model.
|
|
63 |
```python
|
64 |
from transformers import AutoModel
|
65 |
|
66 |
-
model = AutoModel.from_pretrained("thesven/Aether-Qwen2-0.5B-SFT-v0.0.2")
|
67 |
```
|
68 |
|
69 |
or with a pipeline:
|
@@ -75,7 +75,7 @@ messages = [
|
|
75 |
{"role": "system", "content": "You are a helpful software development assistant"},
|
76 |
{"role": "user", "content": "can you write a python function that adds 3 numbers together?"},
|
77 |
]
|
78 |
-
pipe = pipeline("text-generation", model="thesven/Aether-Qwen2-0.5B-SFT-v0.0.2")
|
79 |
print(pipe(messages))
|
80 |
```
|
81 |
|
|
|
63 |
```python
|
64 |
from transformers import AutoModel
|
65 |
|
66 |
+
model = AutoModel.from_pretrained("thesven/Aether-Qwen2-0.5B-SFT-v0.0.2-GTPQ")
|
67 |
```
|
68 |
|
69 |
or with a pipeline:
|
|
|
75 |
{"role": "system", "content": "You are a helpful software development assistant"},
|
76 |
{"role": "user", "content": "can you write a python function that adds 3 numbers together?"},
|
77 |
]
|
78 |
+
pipe = pipeline("text-generation", model="thesven/Aether-Qwen2-0.5B-SFT-v0.0.2-GPTQ")
|
79 |
print(pipe(messages))
|
80 |
```
|
81 |
|