TobiasLogic commited on
Commit
39f4982
·
verified ·
1 Parent(s): 380b837

Fix usage examples to reference the Python-Specialist repo id (were leftover 'Uncensored' references)

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -34,16 +34,16 @@ By aggressively targeting the Attention layers during fine-tuning (while leaving
34
  ### Ollama / LM Studio (GGUF)
35
  You can seamlessly run the GGUF version locally using Ollama:
36
  ```bash
37
- ollama run hf.co/TobiasLogic/Qwen2.5-Coder-32B-Uncensored:Q4_K_M
38
  ```
39
 
40
  ### Transformers
41
  ```python
42
  from transformers import AutoModelForCausalLM, AutoTokenizer
43
 
44
- tokenizer = AutoTokenizer.from_pretrained("TobiasLogic/Qwen2.5-Coder-32B-Uncensored")
45
  model = AutoModelForCausalLM.from_pretrained(
46
- "TobiasLogic/Qwen2.5-Coder-32B-Uncensored",
47
  device_map="auto"
48
  )
49
 
 
34
  ### Ollama / LM Studio (GGUF)
35
  You can seamlessly run the GGUF version locally using Ollama:
36
  ```bash
37
+ ollama run hf.co/TobiasLogic/Qwen2.5-Coder-32B-Python-Specialist:Q4_K_M
38
  ```
39
 
40
  ### Transformers
41
  ```python
42
  from transformers import AutoModelForCausalLM, AutoTokenizer
43
 
44
+ tokenizer = AutoTokenizer.from_pretrained("TobiasLogic/Qwen2.5-Coder-32B-Python-Specialist")
45
  model = AutoModelForCausalLM.from_pretrained(
46
+ "TobiasLogic/Qwen2.5-Coder-32B-Python-Specialist",
47
  device_map="auto"
48
  )
49