teolm30 commited on
Commit
4e24c7a
·
verified ·
1 Parent(s): c368152

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -31
README.md CHANGED
@@ -1,23 +1,26 @@
1
- ---
2
- language: en
3
- library_name: peft
4
- base_model: Qwen/Qwen2.5-3B-Instruct
5
- pipeline_tag: text-generation
6
- tags:
7
- - base_model:adapter:Qwen/Qwen2.5-3B-Instruct
8
- - lora
9
- - transformers
10
- license: apache-2.0
11
- ---
 
 
 
 
12
 
13
  # Ult1-Coding
14
 
15
- **A 3-billion-parameter coding specialist -- master-level software engineer.**
16
 
17
- Based on Qwen2.5-3B-Instruct with an embedded **master programmer** system prompt containing few-shot coding demonstrations and a coding-focused LoRA adapter (rank 16, 8 target module types).
18
-
19
- ## Usage
20
 
 
21
  ```python
22
  from transformers import AutoModelForCausalLM, AutoTokenizer
23
 
@@ -31,22 +34,14 @@ outputs = model.generate(**inputs, max_new_tokens=512)
31
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))
32
  ```
33
 
34
- > The system prompt with few-shot examples is auto-injected by the chat template -- no manual system prompt needed.
35
-
36
- ## GGUF
37
-
38
- Download `Ult1-Coding-Q8_0.gguf` for CPU inference with llama.cpp.
39
-
40
- ## Training Data
41
-
42
- `training_data.json` contains 10 coding Q&A pairs (Python, JavaScript, Rust, SQL, TypeScript, Go). Use with `train.py` on a GPU.
43
 
44
- ## Details
45
 
46
- - **Base**: Qwen2.5-3B-Instruct (3B params)
47
- - **LoRA**: Rank 16, targets q/k/v/o + gate/up/down projections
48
- - **Context**: 32,768 tokens
49
- - **Focus**: Code generation, algorithms, system design, debugging
50
- ### Framework versions
51
 
52
- - PEFT 0.19.1
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ library_name: transformers
4
+ base_model: Qwen/Qwen2.5-3B-Instruct
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - qwen
8
+ - qwen2.5
9
+ - 3b
10
+ - lora
11
+ - coding
12
+ - code
13
+ - software-engineering
14
+ license: apache-2.0
15
+ ---
16
 
17
  # Ult1-Coding
18
 
19
+ A 3-billion-parameter coding specialist -- master-level software engineer.
20
 
21
+ Based on Qwen2.5-3B-Instruct with an embedded master programmer system prompt containing few-shot coding demonstrations and a coding-focused LoRA adapter (rank 16, 8 target module types).
 
 
22
 
23
+ Usage:
24
  ```python
25
  from transformers import AutoModelForCausalLM, AutoTokenizer
26
 
 
34
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))
35
  ```
36
 
37
+ The system prompt with few-shot examples is auto-injected by the chat template - no manual system prompt needed.
 
 
 
 
 
 
 
 
38
 
39
+ GGUF: Download Ult1-Coding-Q8_0.gguf for CPU inference with llama.cpp.
40
 
41
+ Training Data: training_data.json contains 10 coding Q&A pairs (Python, JavaScript, Rust, SQL, TypeScript, Go). Use with train.py on a GPU.
 
 
 
 
42
 
43
+ Details:
44
+ - Base: Qwen2.5-3B-Instruct (3B params)
45
+ - LoRA: Rank 16, targets q/k/v/o + gate/up/down projections
46
+ - Context: 32,768 tokens
47
+ - Focus: Code generation, algorithms, system design, debugging