thesven commited on
Commit
4d0798a
1 Parent(s): c974339

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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