Jake5 commited on
Commit
a9baed2
·
verified ·
1 Parent(s): 90c8d54

Update model card for v0.4

Browse files
Files changed (1) hide show
  1. README.md +31 -5
README.md CHANGED
@@ -1,5 +1,31 @@
1
- ---
2
- license: apache-2.0
3
- tags:
4
- - unsloth
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Qwen2.5-Coder-32B-Instruct-WMX
3
+ Pre-fine-tuned LoRA adapters for unsloth/Qwen2.5-Coder-32B-Instruct.
4
+
5
+ **This lora adapters have been fine-tuned for WMX services using the folowing datasets.**
6
+ - https://huggingface.co/datasets/Jake5/movensys-info
7
+ - https://huggingface.co/datasets/Jake5/wmx-doc-user
8
+ - https://huggingface.co/datasets/Jake5/wmx-doc-robot
9
+
10
+ ## Version v0.4
11
+ - Source: lora_model
12
+ - Base model: unsloth/Qwen2.5-Coder-32B-Instruct
13
+ - Uploaded on: 2025-09-05
14
+
15
+ ## Usage
16
+ ```python
17
+ from peft import PeftModel
18
+ from transformers import AutoModelForCausalLM, AutoTokenizer
19
+ base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen2.5-Coder-32B-Instruct")
20
+ model = PeftModel.from_pretrained(base_model, "Jake5/Qwen2.5-Coder-32B-Instruct-WMX", subfolder="adapters_v0.4")
21
+ tokenizer = AutoTokenizer.from_pretrained("Jake5/Qwen2.5-Coder-32B-Instruct-WMX", subfolder="adapters_v0.4")
22
+ ```
23
+
24
+ ## vLLM Serving
25
+ ```bash
26
+ python -m vllm.entrypoints.openai.api_server \
27
+ --model unsloth/Qwen2.5-Coder-32B-Instruct \
28
+ --lora-modules my-lora=Jake5/Qwen2.5-Coder-32B-Instruct-WMX/adapters_v0.4 \
29
+ --dtype bfloat16 \
30
+ --port 8000
31
+ ```