Choukrijer commited on
Commit
499c907
·
verified ·
1 Parent(s): c6610df

Upload BuildwellAI Qwen3-14B project

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +7 -0
  2. .ipynb_checkpoints/README-checkpoint.md +148 -0
  3. BuildwellTHREAD_Complete_Specification.md +0 -0
  4. README.md +148 -0
  5. configs/.ipynb_checkpoints/training_config-checkpoint.json +46 -0
  6. configs/training_config.json +46 -0
  7. datasets/combined.jsonl +3 -0
  8. datasets/dataset_stats.json +18 -0
  9. datasets/train.jsonl +3 -0
  10. datasets/validation.jsonl +0 -0
  11. output/buildwellai-qwen3-14b-v2/README.md +59 -0
  12. output/buildwellai-qwen3-14b-v2/adapter/README.md +210 -0
  13. output/buildwellai-qwen3-14b-v2/adapter/adapter_config.json +50 -0
  14. output/buildwellai-qwen3-14b-v2/adapter/adapter_model.safetensors +3 -0
  15. output/buildwellai-qwen3-14b-v2/adapter/added_tokens.json +28 -0
  16. output/buildwellai-qwen3-14b-v2/adapter/chat_template.jinja +97 -0
  17. output/buildwellai-qwen3-14b-v2/adapter/merges.txt +0 -0
  18. output/buildwellai-qwen3-14b-v2/adapter/special_tokens_map.json +31 -0
  19. output/buildwellai-qwen3-14b-v2/adapter/tokenizer.json +3 -0
  20. output/buildwellai-qwen3-14b-v2/adapter/tokenizer_config.json +240 -0
  21. output/buildwellai-qwen3-14b-v2/adapter/vocab.json +0 -0
  22. output/buildwellai-qwen3-14b-v2/checkpoint-1400/README.md +210 -0
  23. output/buildwellai-qwen3-14b-v2/checkpoint-1400/adapter_config.json +50 -0
  24. output/buildwellai-qwen3-14b-v2/checkpoint-1400/adapter_model.safetensors +3 -0
  25. output/buildwellai-qwen3-14b-v2/checkpoint-1400/added_tokens.json +28 -0
  26. output/buildwellai-qwen3-14b-v2/checkpoint-1400/chat_template.jinja +97 -0
  27. output/buildwellai-qwen3-14b-v2/checkpoint-1400/merges.txt +0 -0
  28. output/buildwellai-qwen3-14b-v2/checkpoint-1400/optimizer.pt +3 -0
  29. output/buildwellai-qwen3-14b-v2/checkpoint-1400/rng_state.pth +3 -0
  30. output/buildwellai-qwen3-14b-v2/checkpoint-1400/scheduler.pt +3 -0
  31. output/buildwellai-qwen3-14b-v2/checkpoint-1400/special_tokens_map.json +31 -0
  32. output/buildwellai-qwen3-14b-v2/checkpoint-1400/tokenizer.json +3 -0
  33. output/buildwellai-qwen3-14b-v2/checkpoint-1400/tokenizer_config.json +240 -0
  34. output/buildwellai-qwen3-14b-v2/checkpoint-1400/trainer_state.json +295 -0
  35. output/buildwellai-qwen3-14b-v2/checkpoint-1400/training_args.bin +3 -0
  36. output/buildwellai-qwen3-14b-v2/checkpoint-1400/vocab.json +0 -0
  37. output/buildwellai-qwen3-14b-v2/checkpoint-1600/README.md +210 -0
  38. output/buildwellai-qwen3-14b-v2/checkpoint-1600/adapter_config.json +50 -0
  39. output/buildwellai-qwen3-14b-v2/checkpoint-1600/adapter_model.safetensors +3 -0
  40. output/buildwellai-qwen3-14b-v2/checkpoint-1600/added_tokens.json +28 -0
  41. output/buildwellai-qwen3-14b-v2/checkpoint-1600/chat_template.jinja +97 -0
  42. output/buildwellai-qwen3-14b-v2/checkpoint-1600/merges.txt +0 -0
  43. output/buildwellai-qwen3-14b-v2/checkpoint-1600/optimizer.pt +3 -0
  44. output/buildwellai-qwen3-14b-v2/checkpoint-1600/rng_state.pth +3 -0
  45. output/buildwellai-qwen3-14b-v2/checkpoint-1600/scheduler.pt +3 -0
  46. output/buildwellai-qwen3-14b-v2/checkpoint-1600/special_tokens_map.json +31 -0
  47. output/buildwellai-qwen3-14b-v2/checkpoint-1600/tokenizer.json +3 -0
  48. output/buildwellai-qwen3-14b-v2/checkpoint-1600/tokenizer_config.json +240 -0
  49. output/buildwellai-qwen3-14b-v2/checkpoint-1600/trainer_state.json +331 -0
  50. output/buildwellai-qwen3-14b-v2/checkpoint-1600/training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ datasets/combined.jsonl filter=lfs diff=lfs merge=lfs -text
37
+ datasets/train.jsonl filter=lfs diff=lfs merge=lfs -text
38
+ output/buildwellai-qwen3-14b-v2/adapter/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ output/buildwellai-qwen3-14b-v2/checkpoint-1400/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ output/buildwellai-qwen3-14b-v2/checkpoint-1600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
41
+ output/buildwellai-qwen3-14b-v2/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
42
+ output/buildwellai-qwen3-14b-v2/merged/tokenizer.json filter=lfs diff=lfs merge=lfs -text
.ipynb_checkpoints/README-checkpoint.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # BuildwellAI Model V2
2
+
3
+ Fine-tuned Qwen3-14B for UK construction industry applications.
4
+
5
+ ## Features
6
+
7
+ - **42 MCP Server Integration**: Tool calling for all BuildwellAI calculation servers
8
+ - **Multi-Mode Responses**: Direct answers, thinking mode, and tool calling
9
+ - **Anti-Overfitting**: Early stopping, dropout, weight decay, validation monitoring
10
+ - **Streaming API**: OpenAI-compatible streaming inference server
11
+
12
+ ## Quick Start
13
+
14
+ ### 1. Prepare Dataset
15
+
16
+ ```bash
17
+ cd /opt/buildwellai/buildwellai-llm-models/buildwellai-model-v2/scripts
18
+ python3 prepare_dataset.py
19
+ ```
20
+
21
+ This will:
22
+ - Convert CSV files (BSI, UK Benchmark, Q&A pairs)
23
+ - Load existing JSONL datasets (thinking_mode, tool_calling)
24
+ - Generate MCP training data for all 42 servers
25
+ - Validate and deduplicate
26
+ - Split into train/validation sets
27
+
28
+ ### 2. Fine-Tune
29
+
30
+ ```bash
31
+ python3 finetune.py
32
+ ```
33
+
34
+ Or with custom config:
35
+ ```bash
36
+ python3 finetune.py --config ../configs/training_config.json
37
+ ```
38
+
39
+ ### 3. Run Streaming API
40
+
41
+ ```bash
42
+ python3 streaming_api.py --model ../output/buildwellai-qwen3-14b-v2/merged --port 8080
43
+ ```
44
+
45
+ Or interactive CLI:
46
+ ```bash
47
+ python3 streaming_api.py --model ../output/buildwellai-qwen3-14b-v2/merged --cli
48
+ ```
49
+
50
+ ## Dataset Sources
51
+
52
+ | Source | Description | Count |
53
+ |--------|-------------|-------|
54
+ | qa-buildwell-ai.csv | Q&A pairs | ~39K |
55
+ | UK Building Control Benchmark | Building control questions | ~160 |
56
+ | BSI Flex 8670 | Building safety competence | ~47 |
57
+ | dataset_thinking_mode.jsonl | Reasoning examples | 10K |
58
+ | dataset_tool_calling.jsonl | Tool call examples | 8K |
59
+ | MCP Generated | All 42 MCP servers | ~250 |
60
+
61
+ ## Anti-Overfitting Measures
62
+
63
+ 1. **Lower Learning Rate**: 1e-5 (vs typical 2e-4)
64
+ 2. **Weight Decay**: 0.05 L2 regularization
65
+ 3. **LoRA Dropout**: 0.1 in adapter layers
66
+ 4. **Early Stopping**: Patience of 3, monitors val_loss
67
+ 5. **Validation Split**: 5% held out for monitoring
68
+ 6. **Lower LoRA Rank**: r=16 reduces capacity
69
+ 7. **Fewer Epochs**: 2 epochs max
70
+ 8. **Gradient Clipping**: max_grad_norm=0.5
71
+
72
+ ## Estimated Training Time
73
+
74
+ On 2x RTX A5000 (RunPod):
75
+
76
+ | Dataset Size | Method | Time | Cost |
77
+ |--------------|--------|------|------|
78
+ | ~60K samples | Unsloth QLoRA | ~12-15 hours | ~$13-16 |
79
+ | ~60K samples | HF Standard | ~25-30 hours | ~$25-30 |
80
+
81
+ ## API Usage
82
+
83
+ ### OpenAI-Compatible Endpoint
84
+
85
+ ```python
86
+ import openai
87
+
88
+ client = openai.OpenAI(
89
+ base_url="http://localhost:8080/v1",
90
+ api_key="not-needed"
91
+ )
92
+
93
+ response = client.chat.completions.create(
94
+ model="buildwellai-qwen3-14b-v2",
95
+ messages=[
96
+ {"role": "user", "content": "What are the PSI values for junction E5?"}
97
+ ],
98
+ stream=True
99
+ )
100
+
101
+ for chunk in response:
102
+ print(chunk.choices[0].delta.content, end="")
103
+ ```
104
+
105
+ ### Direct Endpoint
106
+
107
+ ```bash
108
+ curl -X POST http://localhost:8080/chat \
109
+ -H "Content-Type: application/json" \
110
+ -d '{
111
+ "messages": [{"role": "user", "content": "Calculate U-value for cavity wall"}],
112
+ "stream": false
113
+ }'
114
+ ```
115
+
116
+ ## File Structure
117
+
118
+ ```
119
+ buildwellai-model-v2/
120
+ ├── configs/
121
+ │ └── training_config.json
122
+ ├── datasets/
123
+ │ ├── train.jsonl
124
+ │ ├── validation.jsonl
125
+ │ └── dataset_stats.json
126
+ ├── scripts/
127
+ │ ├── prepare_dataset.py
128
+ │ ├── finetune.py
129
+ │ └── streaming_api.py
130
+ ├── output/
131
+ │ └── buildwellai-qwen3-14b-v2/
132
+ │ ├── adapter/
133
+ │ └── merged/
134
+ └── logs/
135
+ ```
136
+
137
+ ## MCP Servers Covered
138
+
139
+ All 42 BuildwellAI MCP calculation servers:
140
+
141
+ - Structural: Part A, disproportionate collapse
142
+ - Thermal: U-value, PSI, condensation, thermal break
143
+ - Energy: SAP10, SBEM, Part L, Passivhaus
144
+ - Fire: Safety, smoke ventilation, evacuation
145
+ - Sustainability: BREEAM, WELL, LCA, embodied carbon
146
+ - Water: Part G, drainage, SuDS, flood risk
147
+ - Comfort: Daylight, overheating, acoustics, ventilation
148
+ - And more...
BuildwellTHREAD_Complete_Specification.md ADDED
The diff for this file is too large to render. See raw diff
 
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # BuildwellAI Model V2
2
+
3
+ Fine-tuned Qwen3-14B for UK construction industry applications.
4
+
5
+ ## Features
6
+
7
+ - **42 MCP Server Integration**: Tool calling for all BuildwellAI calculation servers
8
+ - **Multi-Mode Responses**: Direct answers, thinking mode, and tool calling
9
+ - **Anti-Overfitting**: Early stopping, dropout, weight decay, validation monitoring
10
+ - **Streaming API**: OpenAI-compatible streaming inference server
11
+
12
+ ## Quick Start
13
+
14
+ ### 1. Prepare Dataset
15
+
16
+ ```bash
17
+ cd /opt/buildwellai/buildwellai-llm-models/buildwellai-model-v2/scripts
18
+ python3 prepare_dataset.py
19
+ ```
20
+
21
+ This will:
22
+ - Convert CSV files (BSI, UK Benchmark, Q&A pairs)
23
+ - Load existing JSONL datasets (thinking_mode, tool_calling)
24
+ - Generate MCP training data for all 42 servers
25
+ - Validate and deduplicate
26
+ - Split into train/validation sets
27
+
28
+ ### 2. Fine-Tune
29
+
30
+ ```bash
31
+ python3 finetune.py
32
+ ```
33
+
34
+ Or with custom config:
35
+ ```bash
36
+ python3 finetune.py --config ../configs/training_config.json
37
+ ```
38
+
39
+ ### 3. Run Streaming API
40
+
41
+ ```bash
42
+ python3 streaming_api.py --model ../output/buildwellai-qwen3-14b-v2/merged --port 8080
43
+ ```
44
+
45
+ Or interactive CLI:
46
+ ```bash
47
+ python3 streaming_api.py --model ../output/buildwellai-qwen3-14b-v2/merged --cli
48
+ ```
49
+
50
+ ## Dataset Sources
51
+
52
+ | Source | Description | Count |
53
+ |--------|-------------|-------|
54
+ | qa-buildwell-ai.csv | Q&A pairs | ~39K |
55
+ | UK Building Control Benchmark | Building control questions | ~160 |
56
+ | BSI Flex 8670 | Building safety competence | ~47 |
57
+ | dataset_thinking_mode.jsonl | Reasoning examples | 10K |
58
+ | dataset_tool_calling.jsonl | Tool call examples | 8K |
59
+ | MCP Generated | All 42 MCP servers | ~250 |
60
+
61
+ ## Anti-Overfitting Measures
62
+
63
+ 1. **Lower Learning Rate**: 1e-5 (vs typical 2e-4)
64
+ 2. **Weight Decay**: 0.05 L2 regularization
65
+ 3. **LoRA Dropout**: 0.1 in adapter layers
66
+ 4. **Early Stopping**: Patience of 3, monitors val_loss
67
+ 5. **Validation Split**: 5% held out for monitoring
68
+ 6. **Lower LoRA Rank**: r=16 reduces capacity
69
+ 7. **Fewer Epochs**: 2 epochs max
70
+ 8. **Gradient Clipping**: max_grad_norm=0.5
71
+
72
+ ## Estimated Training Time
73
+
74
+ On 2x RTX A5000 (RunPod):
75
+
76
+ | Dataset Size | Method | Time | Cost |
77
+ |--------------|--------|------|------|
78
+ | ~60K samples | Unsloth QLoRA | ~12-15 hours | ~$13-16 |
79
+ | ~60K samples | HF Standard | ~25-30 hours | ~$25-30 |
80
+
81
+ ## API Usage
82
+
83
+ ### OpenAI-Compatible Endpoint
84
+
85
+ ```python
86
+ import openai
87
+
88
+ client = openai.OpenAI(
89
+ base_url="http://localhost:8080/v1",
90
+ api_key="not-needed"
91
+ )
92
+
93
+ response = client.chat.completions.create(
94
+ model="buildwellai-qwen3-14b-v2",
95
+ messages=[
96
+ {"role": "user", "content": "What are the PSI values for junction E5?"}
97
+ ],
98
+ stream=True
99
+ )
100
+
101
+ for chunk in response:
102
+ print(chunk.choices[0].delta.content, end="")
103
+ ```
104
+
105
+ ### Direct Endpoint
106
+
107
+ ```bash
108
+ curl -X POST http://localhost:8080/chat \
109
+ -H "Content-Type: application/json" \
110
+ -d '{
111
+ "messages": [{"role": "user", "content": "Calculate U-value for cavity wall"}],
112
+ "stream": false
113
+ }'
114
+ ```
115
+
116
+ ## File Structure
117
+
118
+ ```
119
+ buildwellai-model-v2/
120
+ ├── configs/
121
+ │ └── training_config.json
122
+ ├── datasets/
123
+ │ ├── train.jsonl
124
+ │ ├── validation.jsonl
125
+ │ └── dataset_stats.json
126
+ ├── scripts/
127
+ │ ├── prepare_dataset.py
128
+ │ ├── finetune.py
129
+ │ └── streaming_api.py
130
+ ├── output/
131
+ │ └── buildwellai-qwen3-14b-v2/
132
+ │ ├── adapter/
133
+ │ └── merged/
134
+ └── logs/
135
+ ```
136
+
137
+ ## MCP Servers Covered
138
+
139
+ All 42 BuildwellAI MCP calculation servers:
140
+
141
+ - Structural: Part A, disproportionate collapse
142
+ - Thermal: U-value, PSI, condensation, thermal break
143
+ - Energy: SAP10, SBEM, Part L, Passivhaus
144
+ - Fire: Safety, smoke ventilation, evacuation
145
+ - Sustainability: BREEAM, WELL, LCA, embodied carbon
146
+ - Water: Part G, drainage, SuDS, flood risk
147
+ - Comfort: Daylight, overheating, acoustics, ventilation
148
+ - And more...
configs/.ipynb_checkpoints/training_config-checkpoint.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": {
3
+ "base_model": "Qwen/Qwen3-14B",
4
+ "max_seq_length": 2048
5
+ },
6
+ "lora": {
7
+ "lora_r": 16,
8
+ "lora_alpha": 32,
9
+ "lora_dropout": 0.1,
10
+ "lora_target_modules": [
11
+ "q_proj", "k_proj", "v_proj", "o_proj",
12
+ "gate_proj", "up_proj", "down_proj"
13
+ ]
14
+ },
15
+ "training": {
16
+ "batch_size": 4,
17
+ "gradient_accumulation_steps": 4,
18
+ "learning_rate": 1e-5,
19
+ "num_epochs": 2,
20
+ "warmup_ratio": 0.1,
21
+ "weight_decay": 0.05,
22
+ "max_grad_norm": 0.5
23
+ },
24
+ "anti_overfitting": {
25
+ "early_stopping_patience": 3,
26
+ "early_stopping_threshold": 0.01,
27
+ "eval_steps": 200,
28
+ "validation_split": 0.05,
29
+ "notes": [
30
+ "Lower learning rate (1e-5) prevents aggressive updates",
31
+ "Weight decay (0.05) provides L2 regularization",
32
+ "LoRA dropout (0.1) prevents co-adaptation",
33
+ "Early stopping monitors validation loss",
34
+ "Lower LoRA rank (16) reduces model capacity"
35
+ ]
36
+ },
37
+ "paths": {
38
+ "train_data": "../datasets/train.jsonl",
39
+ "val_data": "../datasets/validation.jsonl",
40
+ "output_dir": "../output/buildwellai-qwen3-14b-v2"
41
+ },
42
+ "hub": {
43
+ "push_to_hub": false,
44
+ "hub_model_id": "buildwellai/qwen3-14b-v2"
45
+ }
46
+ }
configs/training_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": {
3
+ "base_model": "Qwen/Qwen3-14B",
4
+ "max_seq_length": 2048
5
+ },
6
+ "lora": {
7
+ "lora_r": 16,
8
+ "lora_alpha": 32,
9
+ "lora_dropout": 0.1,
10
+ "lora_target_modules": [
11
+ "q_proj", "k_proj", "v_proj", "o_proj",
12
+ "gate_proj", "up_proj", "down_proj"
13
+ ]
14
+ },
15
+ "training": {
16
+ "batch_size": 4,
17
+ "gradient_accumulation_steps": 4,
18
+ "learning_rate": 1e-5,
19
+ "num_epochs": 2,
20
+ "warmup_ratio": 0.1,
21
+ "weight_decay": 0.05,
22
+ "max_grad_norm": 0.5
23
+ },
24
+ "anti_overfitting": {
25
+ "early_stopping_patience": 3,
26
+ "early_stopping_threshold": 0.01,
27
+ "eval_steps": 200,
28
+ "validation_split": 0.05,
29
+ "notes": [
30
+ "Lower learning rate (1e-5) prevents aggressive updates",
31
+ "Weight decay (0.05) provides L2 regularization",
32
+ "LoRA dropout (0.1) prevents co-adaptation",
33
+ "Early stopping monitors validation loss",
34
+ "Lower LoRA rank (16) reduces model capacity"
35
+ ]
36
+ },
37
+ "paths": {
38
+ "train_data": "../datasets/train.jsonl",
39
+ "val_data": "../datasets/validation.jsonl",
40
+ "output_dir": "../output/buildwellai-qwen3-14b-v2"
41
+ },
42
+ "hub": {
43
+ "push_to_hub": false,
44
+ "hub_model_id": "buildwellai/qwen3-14b-v2"
45
+ }
46
+ }
datasets/combined.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:652d9bafd0c2a8b411a98a3ff4331f4ae65a3dce2844c78a053fd7f8fc9a3037
3
+ size 27673173
datasets/dataset_stats.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-01-04T01:00:39.599818",
3
+ "source_counts": {
4
+ "thinking_mode": 10000,
5
+ "tool_calling": 8000,
6
+ "qa_pairs": 34446,
7
+ "uk_benchmark": 63,
8
+ "bsi_benchmark": 40,
9
+ "mcp_generated": 3690
10
+ },
11
+ "total_before_processing": 56239,
12
+ "valid_examples": 56239,
13
+ "unique_examples": 44022,
14
+ "balanced_examples": 28824,
15
+ "train_examples": 27383,
16
+ "val_examples": 1441,
17
+ "mcp_servers_covered": 42
18
+ }
datasets/train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6a6805a37ddea3b810f9fa385cdaac69e838f1a7ed10dd0d6e067b0e1bf1e1b
3
+ size 26287919
datasets/validation.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/qwen3-14b-unsloth-bnb-4bit
3
+ library_name: transformers
4
+ model_name: buildwellai-qwen3-14b-v2
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ - unsloth
10
+ licence: license
11
+ ---
12
+
13
+ # Model Card for buildwellai-qwen3-14b-v2
14
+
15
+ This model is a fine-tuned version of [unsloth/qwen3-14b-unsloth-bnb-4bit](https://huggingface.co/unsloth/qwen3-14b-unsloth-bnb-4bit).
16
+ It has been trained using [TRL](https://github.com/huggingface/trl).
17
+
18
+ ## Quick start
19
+
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
24
+ generator = pipeline("text-generation", model="None", device="cuda")
25
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
+ print(output["generated_text"])
27
+ ```
28
+
29
+ ## Training procedure
30
+
31
+
32
+
33
+
34
+ This model was trained with SFT.
35
+
36
+ ### Framework versions
37
+
38
+ - TRL: 0.24.0
39
+ - Transformers: 4.57.3
40
+ - Pytorch: 2.9.1
41
+ - Datasets: 4.3.0
42
+ - Tokenizers: 0.22.1
43
+
44
+ ## Citations
45
+
46
+
47
+
48
+ Cite TRL as:
49
+
50
+ ```bibtex
51
+ @misc{vonwerra2022trl,
52
+ title = {{TRL: Transformer Reinforcement Learning}},
53
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
54
+ year = 2020,
55
+ journal = {GitHub repository},
56
+ publisher = {GitHub},
57
+ howpublished = {\url{https://github.com/huggingface/trl}}
58
+ }
59
+ ```
output/buildwellai-qwen3-14b-v2/adapter/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/qwen3-14b-unsloth-bnb-4bit
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/qwen3-14b-unsloth-bnb-4bit
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.0
output/buildwellai-qwen3-14b-v2/adapter/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3ForCausalLM",
7
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/qwen3-14b-unsloth-bnb-4bit",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 32,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.1,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.0",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "gate_proj",
37
+ "o_proj",
38
+ "k_proj",
39
+ "q_proj",
40
+ "down_proj",
41
+ "v_proj",
42
+ "up_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
output/buildwellai-qwen3-14b-v2/adapter/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d909458181e3fc199392ce9e2dda0f94f1b1e9b872aeb4a7707001aaf7dc65fd
3
+ size 256976504
output/buildwellai-qwen3-14b-v2/adapter/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
output/buildwellai-qwen3-14b-v2/adapter/chat_template.jinja ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for forward_message in messages %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- set message = messages[index] %}
21
+ {%- set tool_start = '<tool_response>' %}
22
+ {%- set tool_start_length = tool_start|length %}
23
+ {%- set start_of_message = message.content[:tool_start_length] %}
24
+ {%- set tool_end = '</tool_response>' %}
25
+ {%- set tool_end_length = tool_end|length %}
26
+ {%- set start_pos = (message.content|length) - tool_end_length %}
27
+ {%- if start_pos < 0 %}
28
+ {%- set start_pos = 0 %}
29
+ {%- endif %}
30
+ {%- set end_of_message = message.content[start_pos:] %}
31
+ {%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
32
+ {%- set ns.multi_step_tool = false %}
33
+ {%- set ns.last_query_index = index %}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- for message in messages %}
37
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
38
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
39
+ {%- elif message.role == "assistant" %}
40
+ {%- set content = message.content %}
41
+ {%- set reasoning_content = '' %}
42
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
43
+ {%- set reasoning_content = message.reasoning_content %}
44
+ {%- else %}
45
+ {%- if '</think>' in message.content %}
46
+ {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
47
+ {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
48
+ {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- if loop.index0 > ns.last_query_index %}
52
+ {%- if loop.last or (not loop.last and reasoning_content) %}
53
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
54
+ {%- else %}
55
+ {{- '<|im_start|>' + message.role + '\n' + content }}
56
+ {%- endif %}
57
+ {%- else %}
58
+ {{- '<|im_start|>' + message.role + '\n' + content }}
59
+ {%- endif %}
60
+ {%- if message.tool_calls %}
61
+ {%- for tool_call in message.tool_calls %}
62
+ {%- if (loop.first and content) or (not loop.first) %}
63
+ {{- '\n' }}
64
+ {%- endif %}
65
+ {%- if tool_call.function %}
66
+ {%- set tool_call = tool_call.function %}
67
+ {%- endif %}
68
+ {{- '<tool_call>\n{"name": "' }}
69
+ {{- tool_call.name }}
70
+ {{- '", "arguments": ' }}
71
+ {%- if tool_call.arguments is string %}
72
+ {{- tool_call.arguments }}
73
+ {%- else %}
74
+ {{- tool_call.arguments | tojson }}
75
+ {%- endif %}
76
+ {{- '}\n</tool_call>' }}
77
+ {%- endfor %}
78
+ {%- endif %}
79
+ {{- '<|im_end|>\n' }}
80
+ {%- elif message.role == "tool" %}
81
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
82
+ {{- '<|im_start|>user' }}
83
+ {%- endif %}
84
+ {{- '\n<tool_response>\n' }}
85
+ {{- message.content }}
86
+ {{- '\n</tool_response>' }}
87
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
88
+ {{- '<|im_end|>\n' }}
89
+ {%- endif %}
90
+ {%- endif %}
91
+ {%- endfor %}
92
+ {%- if add_generation_prompt %}
93
+ {{- '<|im_start|>assistant\n' }}
94
+ {%- if enable_thinking is defined and enable_thinking is false %}
95
+ {{- '<think>\n\n</think>\n\n' }}
96
+ {%- endif %}
97
+ {%- endif %}
output/buildwellai-qwen3-14b-v2/adapter/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/adapter/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|vision_pad|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
output/buildwellai-qwen3-14b-v2/adapter/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
output/buildwellai-qwen3-14b-v2/adapter/tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 40960,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "left",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
output/buildwellai-qwen3-14b-v2/adapter/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/checkpoint-1400/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/qwen3-14b-unsloth-bnb-4bit
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/qwen3-14b-unsloth-bnb-4bit
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.0
output/buildwellai-qwen3-14b-v2/checkpoint-1400/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3ForCausalLM",
7
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/qwen3-14b-unsloth-bnb-4bit",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 32,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.1,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.0",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "gate_proj",
37
+ "o_proj",
38
+ "k_proj",
39
+ "q_proj",
40
+ "down_proj",
41
+ "v_proj",
42
+ "up_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1400/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8daeae83d8f2a2abbacbf644f6c61c9aa2292f2f9c6f4638eac0c4212fcc953
3
+ size 256976504
output/buildwellai-qwen3-14b-v2/checkpoint-1400/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1400/chat_template.jinja ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for forward_message in messages %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- set message = messages[index] %}
21
+ {%- set tool_start = '<tool_response>' %}
22
+ {%- set tool_start_length = tool_start|length %}
23
+ {%- set start_of_message = message.content[:tool_start_length] %}
24
+ {%- set tool_end = '</tool_response>' %}
25
+ {%- set tool_end_length = tool_end|length %}
26
+ {%- set start_pos = (message.content|length) - tool_end_length %}
27
+ {%- if start_pos < 0 %}
28
+ {%- set start_pos = 0 %}
29
+ {%- endif %}
30
+ {%- set end_of_message = message.content[start_pos:] %}
31
+ {%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
32
+ {%- set ns.multi_step_tool = false %}
33
+ {%- set ns.last_query_index = index %}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- for message in messages %}
37
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
38
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
39
+ {%- elif message.role == "assistant" %}
40
+ {%- set content = message.content %}
41
+ {%- set reasoning_content = '' %}
42
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
43
+ {%- set reasoning_content = message.reasoning_content %}
44
+ {%- else %}
45
+ {%- if '</think>' in message.content %}
46
+ {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
47
+ {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
48
+ {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- if loop.index0 > ns.last_query_index %}
52
+ {%- if loop.last or (not loop.last and reasoning_content) %}
53
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
54
+ {%- else %}
55
+ {{- '<|im_start|>' + message.role + '\n' + content }}
56
+ {%- endif %}
57
+ {%- else %}
58
+ {{- '<|im_start|>' + message.role + '\n' + content }}
59
+ {%- endif %}
60
+ {%- if message.tool_calls %}
61
+ {%- for tool_call in message.tool_calls %}
62
+ {%- if (loop.first and content) or (not loop.first) %}
63
+ {{- '\n' }}
64
+ {%- endif %}
65
+ {%- if tool_call.function %}
66
+ {%- set tool_call = tool_call.function %}
67
+ {%- endif %}
68
+ {{- '<tool_call>\n{"name": "' }}
69
+ {{- tool_call.name }}
70
+ {{- '", "arguments": ' }}
71
+ {%- if tool_call.arguments is string %}
72
+ {{- tool_call.arguments }}
73
+ {%- else %}
74
+ {{- tool_call.arguments | tojson }}
75
+ {%- endif %}
76
+ {{- '}\n</tool_call>' }}
77
+ {%- endfor %}
78
+ {%- endif %}
79
+ {{- '<|im_end|>\n' }}
80
+ {%- elif message.role == "tool" %}
81
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
82
+ {{- '<|im_start|>user' }}
83
+ {%- endif %}
84
+ {{- '\n<tool_response>\n' }}
85
+ {{- message.content }}
86
+ {{- '\n</tool_response>' }}
87
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
88
+ {{- '<|im_end|>\n' }}
89
+ {%- endif %}
90
+ {%- endif %}
91
+ {%- endfor %}
92
+ {%- if add_generation_prompt %}
93
+ {{- '<|im_start|>assistant\n' }}
94
+ {%- if enable_thinking is defined and enable_thinking is false %}
95
+ {{- '<think>\n\n</think>\n\n' }}
96
+ {%- endif %}
97
+ {%- endif %}
output/buildwellai-qwen3-14b-v2/checkpoint-1400/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/checkpoint-1400/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea3f1a999465a11701a6be3d777f22fc9f8dcc77d3b74259fe9dd4532bf2ae72
3
+ size 131116517
output/buildwellai-qwen3-14b-v2/checkpoint-1400/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9625c3c98e4adc31b7f3f7a1132230be346233b4e94220d6ebad5d816e7a3d35
3
+ size 14645
output/buildwellai-qwen3-14b-v2/checkpoint-1400/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cf227604c10a82adf9d477ee377b51d0f5213823a475659b7355593ae3a4c9b
3
+ size 1465
output/buildwellai-qwen3-14b-v2/checkpoint-1400/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|vision_pad|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1400/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
output/buildwellai-qwen3-14b-v2/checkpoint-1400/tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 40960,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1400/trainer_state.json ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 1400,
3
+ "best_metric": 0.5772307515144348,
4
+ "best_model_checkpoint": "/workspace/buildwellai-model-v2/scripts/../output/buildwellai-qwen3-14b-v2/checkpoint-1400",
5
+ "epoch": 0.8179959100204499,
6
+ "eval_steps": 200,
7
+ "global_step": 1400,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.029214139643587496,
14
+ "grad_norm": 1.361085057258606,
15
+ "learning_rate": 1.4285714285714286e-06,
16
+ "loss": 3.3312,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.05842827928717499,
21
+ "grad_norm": 1.5474236011505127,
22
+ "learning_rate": 2.8862973760932948e-06,
23
+ "loss": 3.2436,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.0876424189307625,
28
+ "grad_norm": 1.0977267026901245,
29
+ "learning_rate": 4.3440233236151605e-06,
30
+ "loss": 2.7672,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.11685655857434998,
35
+ "grad_norm": 0.9992676973342896,
36
+ "learning_rate": 5.8017492711370275e-06,
37
+ "loss": 1.9203,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.11685655857434998,
42
+ "eval_loss": 1.4733352661132812,
43
+ "eval_runtime": 76.5644,
44
+ "eval_samples_per_second": 18.821,
45
+ "eval_steps_per_second": 4.715,
46
+ "step": 200
47
+ },
48
+ {
49
+ "epoch": 0.14607069821793747,
50
+ "grad_norm": 0.739029586315155,
51
+ "learning_rate": 7.259475218658893e-06,
52
+ "loss": 1.1691,
53
+ "step": 250
54
+ },
55
+ {
56
+ "epoch": 0.175284837861525,
57
+ "grad_norm": 0.984306812286377,
58
+ "learning_rate": 8.717201166180759e-06,
59
+ "loss": 0.8688,
60
+ "step": 300
61
+ },
62
+ {
63
+ "epoch": 0.20449897750511248,
64
+ "grad_norm": 1.0378776788711548,
65
+ "learning_rate": 9.999906425502512e-06,
66
+ "loss": 0.8005,
67
+ "step": 350
68
+ },
69
+ {
70
+ "epoch": 0.23371311714869997,
71
+ "grad_norm": 0.7030986547470093,
72
+ "learning_rate": 9.991850810731995e-06,
73
+ "loss": 0.7501,
74
+ "step": 400
75
+ },
76
+ {
77
+ "epoch": 0.23371311714869997,
78
+ "eval_loss": 0.71233069896698,
79
+ "eval_runtime": 75.7382,
80
+ "eval_samples_per_second": 19.026,
81
+ "eval_steps_per_second": 4.766,
82
+ "step": 400
83
+ },
84
+ {
85
+ "epoch": 0.26292725679228746,
86
+ "grad_norm": 0.7112348079681396,
87
+ "learning_rate": 9.970822689941807e-06,
88
+ "loss": 0.7232,
89
+ "step": 450
90
+ },
91
+ {
92
+ "epoch": 0.29214139643587494,
93
+ "grad_norm": 0.7040561437606812,
94
+ "learning_rate": 9.936876709681668e-06,
95
+ "loss": 0.6858,
96
+ "step": 500
97
+ },
98
+ {
99
+ "epoch": 0.32135553607946243,
100
+ "grad_norm": 0.5420087575912476,
101
+ "learning_rate": 9.890101086617094e-06,
102
+ "loss": 0.6758,
103
+ "step": 550
104
+ },
105
+ {
106
+ "epoch": 0.35056967572305,
107
+ "grad_norm": 0.7667332887649536,
108
+ "learning_rate": 9.830617378277503e-06,
109
+ "loss": 0.6676,
110
+ "step": 600
111
+ },
112
+ {
113
+ "epoch": 0.35056967572305,
114
+ "eval_loss": 0.6397307515144348,
115
+ "eval_runtime": 75.4863,
116
+ "eval_samples_per_second": 19.09,
117
+ "eval_steps_per_second": 4.782,
118
+ "step": 600
119
+ },
120
+ {
121
+ "epoch": 0.37978381536663747,
122
+ "grad_norm": 0.709941565990448,
123
+ "learning_rate": 9.758580167160203e-06,
124
+ "loss": 0.6336,
125
+ "step": 650
126
+ },
127
+ {
128
+ "epoch": 0.40899795501022496,
129
+ "grad_norm": 0.509796142578125,
130
+ "learning_rate": 9.674176659011176e-06,
131
+ "loss": 0.6487,
132
+ "step": 700
133
+ },
134
+ {
135
+ "epoch": 0.43821209465381245,
136
+ "grad_norm": 0.696540117263794,
137
+ "learning_rate": 9.577626196326636e-06,
138
+ "loss": 0.6237,
139
+ "step": 750
140
+ },
141
+ {
142
+ "epoch": 0.46742623429739993,
143
+ "grad_norm": 0.5185802578926086,
144
+ "learning_rate": 9.46917968833962e-06,
145
+ "loss": 0.6352,
146
+ "step": 800
147
+ },
148
+ {
149
+ "epoch": 0.46742623429739993,
150
+ "eval_loss": 0.6110621690750122,
151
+ "eval_runtime": 75.3303,
152
+ "eval_samples_per_second": 19.129,
153
+ "eval_steps_per_second": 4.792,
154
+ "step": 800
155
+ },
156
+ {
157
+ "epoch": 0.4966403739409874,
158
+ "grad_norm": 0.6223486661911011,
159
+ "learning_rate": 9.349118958972965e-06,
160
+ "loss": 0.6465,
161
+ "step": 850
162
+ },
163
+ {
164
+ "epoch": 0.5258545135845749,
165
+ "grad_norm": 0.6150782108306885,
166
+ "learning_rate": 9.217756014453116e-06,
167
+ "loss": 0.6365,
168
+ "step": 900
169
+ },
170
+ {
171
+ "epoch": 0.5550686532281625,
172
+ "grad_norm": 0.5226706266403198,
173
+ "learning_rate": 9.07543223248809e-06,
174
+ "loss": 0.6095,
175
+ "step": 950
176
+ },
177
+ {
178
+ "epoch": 0.5842827928717499,
179
+ "grad_norm": 0.7013393044471741,
180
+ "learning_rate": 8.922517475116697e-06,
181
+ "loss": 0.6019,
182
+ "step": 1000
183
+ },
184
+ {
185
+ "epoch": 0.5842827928717499,
186
+ "eval_loss": 0.5948120951652527,
187
+ "eval_runtime": 77.78,
188
+ "eval_samples_per_second": 18.527,
189
+ "eval_steps_per_second": 4.641,
190
+ "step": 1000
191
+ },
192
+ {
193
+ "epoch": 0.6134969325153374,
194
+ "grad_norm": 0.7205643057823181,
195
+ "learning_rate": 8.75940912753447e-06,
196
+ "loss": 0.6086,
197
+ "step": 1050
198
+ },
199
+ {
200
+ "epoch": 0.6427110721589249,
201
+ "grad_norm": 0.5235279202461243,
202
+ "learning_rate": 8.586531065394169e-06,
203
+ "loss": 0.5858,
204
+ "step": 1100
205
+ },
206
+ {
207
+ "epoch": 0.6719252118025124,
208
+ "grad_norm": 0.5805732011795044,
209
+ "learning_rate": 8.404332553264548e-06,
210
+ "loss": 0.6023,
211
+ "step": 1150
212
+ },
213
+ {
214
+ "epoch": 0.7011393514461,
215
+ "grad_norm": 0.6715013384819031,
216
+ "learning_rate": 8.213287077110033e-06,
217
+ "loss": 0.6163,
218
+ "step": 1200
219
+ },
220
+ {
221
+ "epoch": 0.7011393514461,
222
+ "eval_loss": 0.5841032266616821,
223
+ "eval_runtime": 77.5353,
224
+ "eval_samples_per_second": 18.585,
225
+ "eval_steps_per_second": 4.656,
226
+ "step": 1200
227
+ },
228
+ {
229
+ "epoch": 0.7303534910896874,
230
+ "grad_norm": 0.6179790496826172,
231
+ "learning_rate": 8.013891113825348e-06,
232
+ "loss": 0.6079,
233
+ "step": 1250
234
+ },
235
+ {
236
+ "epoch": 0.7595676307332749,
237
+ "grad_norm": 0.6922735571861267,
238
+ "learning_rate": 7.806662841022781e-06,
239
+ "loss": 0.6136,
240
+ "step": 1300
241
+ },
242
+ {
243
+ "epoch": 0.7887817703768624,
244
+ "grad_norm": 0.5134425163269043,
245
+ "learning_rate": 7.592140790424999e-06,
246
+ "loss": 0.5864,
247
+ "step": 1350
248
+ },
249
+ {
250
+ "epoch": 0.8179959100204499,
251
+ "grad_norm": 0.704928457736969,
252
+ "learning_rate": 7.370882448362868e-06,
253
+ "loss": 0.6287,
254
+ "step": 1400
255
+ },
256
+ {
257
+ "epoch": 0.8179959100204499,
258
+ "eval_loss": 0.5772307515144348,
259
+ "eval_runtime": 76.579,
260
+ "eval_samples_per_second": 18.817,
261
+ "eval_steps_per_second": 4.714,
262
+ "step": 1400
263
+ }
264
+ ],
265
+ "logging_steps": 50,
266
+ "max_steps": 3424,
267
+ "num_input_tokens_seen": 0,
268
+ "num_train_epochs": 2,
269
+ "save_steps": 200,
270
+ "stateful_callbacks": {
271
+ "EarlyStoppingCallback": {
272
+ "args": {
273
+ "early_stopping_patience": 3,
274
+ "early_stopping_threshold": 0.01
275
+ },
276
+ "attributes": {
277
+ "early_stopping_patience_counter": 1
278
+ }
279
+ },
280
+ "TrainerControl": {
281
+ "args": {
282
+ "should_epoch_stop": false,
283
+ "should_evaluate": false,
284
+ "should_log": false,
285
+ "should_save": true,
286
+ "should_training_stop": false
287
+ },
288
+ "attributes": {}
289
+ }
290
+ },
291
+ "total_flos": 3.5038598130256896e+17,
292
+ "train_batch_size": 4,
293
+ "trial_name": null,
294
+ "trial_params": null
295
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1400/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4c420a33adb38f7d6f12b2f291fb0cc9ef19643591157b66a8d09e4a26a7683
3
+ size 6417
output/buildwellai-qwen3-14b-v2/checkpoint-1400/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/checkpoint-1600/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/qwen3-14b-unsloth-bnb-4bit
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/qwen3-14b-unsloth-bnb-4bit
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.0
output/buildwellai-qwen3-14b-v2/checkpoint-1600/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3ForCausalLM",
7
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/qwen3-14b-unsloth-bnb-4bit",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 32,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.1,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.0",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "gate_proj",
37
+ "o_proj",
38
+ "k_proj",
39
+ "q_proj",
40
+ "down_proj",
41
+ "v_proj",
42
+ "up_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1600/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3c0695c9a566c91961a2338989c3a0e59383e2d585a20fd98b9e244fac97e3a
3
+ size 256976504
output/buildwellai-qwen3-14b-v2/checkpoint-1600/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1600/chat_template.jinja ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for forward_message in messages %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- set message = messages[index] %}
21
+ {%- set tool_start = '<tool_response>' %}
22
+ {%- set tool_start_length = tool_start|length %}
23
+ {%- set start_of_message = message.content[:tool_start_length] %}
24
+ {%- set tool_end = '</tool_response>' %}
25
+ {%- set tool_end_length = tool_end|length %}
26
+ {%- set start_pos = (message.content|length) - tool_end_length %}
27
+ {%- if start_pos < 0 %}
28
+ {%- set start_pos = 0 %}
29
+ {%- endif %}
30
+ {%- set end_of_message = message.content[start_pos:] %}
31
+ {%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
32
+ {%- set ns.multi_step_tool = false %}
33
+ {%- set ns.last_query_index = index %}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- for message in messages %}
37
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
38
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
39
+ {%- elif message.role == "assistant" %}
40
+ {%- set content = message.content %}
41
+ {%- set reasoning_content = '' %}
42
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
43
+ {%- set reasoning_content = message.reasoning_content %}
44
+ {%- else %}
45
+ {%- if '</think>' in message.content %}
46
+ {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
47
+ {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
48
+ {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- if loop.index0 > ns.last_query_index %}
52
+ {%- if loop.last or (not loop.last and reasoning_content) %}
53
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
54
+ {%- else %}
55
+ {{- '<|im_start|>' + message.role + '\n' + content }}
56
+ {%- endif %}
57
+ {%- else %}
58
+ {{- '<|im_start|>' + message.role + '\n' + content }}
59
+ {%- endif %}
60
+ {%- if message.tool_calls %}
61
+ {%- for tool_call in message.tool_calls %}
62
+ {%- if (loop.first and content) or (not loop.first) %}
63
+ {{- '\n' }}
64
+ {%- endif %}
65
+ {%- if tool_call.function %}
66
+ {%- set tool_call = tool_call.function %}
67
+ {%- endif %}
68
+ {{- '<tool_call>\n{"name": "' }}
69
+ {{- tool_call.name }}
70
+ {{- '", "arguments": ' }}
71
+ {%- if tool_call.arguments is string %}
72
+ {{- tool_call.arguments }}
73
+ {%- else %}
74
+ {{- tool_call.arguments | tojson }}
75
+ {%- endif %}
76
+ {{- '}\n</tool_call>' }}
77
+ {%- endfor %}
78
+ {%- endif %}
79
+ {{- '<|im_end|>\n' }}
80
+ {%- elif message.role == "tool" %}
81
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
82
+ {{- '<|im_start|>user' }}
83
+ {%- endif %}
84
+ {{- '\n<tool_response>\n' }}
85
+ {{- message.content }}
86
+ {{- '\n</tool_response>' }}
87
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
88
+ {{- '<|im_end|>\n' }}
89
+ {%- endif %}
90
+ {%- endif %}
91
+ {%- endfor %}
92
+ {%- if add_generation_prompt %}
93
+ {{- '<|im_start|>assistant\n' }}
94
+ {%- if enable_thinking is defined and enable_thinking is false %}
95
+ {{- '<think>\n\n</think>\n\n' }}
96
+ {%- endif %}
97
+ {%- endif %}
output/buildwellai-qwen3-14b-v2/checkpoint-1600/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
output/buildwellai-qwen3-14b-v2/checkpoint-1600/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165063232c9c1b49c8b32e10ad3b9b34fd2f45404f9b0b249d8d819e700619f4
3
+ size 131116517
output/buildwellai-qwen3-14b-v2/checkpoint-1600/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e62702e1866bea8047f5d706df48b422a403b592ab0372d9ecdcb828bba1d5a
3
+ size 14645
output/buildwellai-qwen3-14b-v2/checkpoint-1600/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a249ba8fac1ae07f47df4390041a4569296e6ea1288f256e2ba90de6ebc1bcd
3
+ size 1465
output/buildwellai-qwen3-14b-v2/checkpoint-1600/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|vision_pad|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1600/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
output/buildwellai-qwen3-14b-v2/checkpoint-1600/tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 40960,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1600/trainer_state.json ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 1600,
3
+ "best_metric": 0.5714595913887024,
4
+ "best_model_checkpoint": "/workspace/buildwellai-model-v2/scripts/../output/buildwellai-qwen3-14b-v2/checkpoint-1600",
5
+ "epoch": 0.9348524685947999,
6
+ "eval_steps": 200,
7
+ "global_step": 1600,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.029214139643587496,
14
+ "grad_norm": 1.361085057258606,
15
+ "learning_rate": 1.4285714285714286e-06,
16
+ "loss": 3.3312,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.05842827928717499,
21
+ "grad_norm": 1.5474236011505127,
22
+ "learning_rate": 2.8862973760932948e-06,
23
+ "loss": 3.2436,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.0876424189307625,
28
+ "grad_norm": 1.0977267026901245,
29
+ "learning_rate": 4.3440233236151605e-06,
30
+ "loss": 2.7672,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.11685655857434998,
35
+ "grad_norm": 0.9992676973342896,
36
+ "learning_rate": 5.8017492711370275e-06,
37
+ "loss": 1.9203,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.11685655857434998,
42
+ "eval_loss": 1.4733352661132812,
43
+ "eval_runtime": 76.5644,
44
+ "eval_samples_per_second": 18.821,
45
+ "eval_steps_per_second": 4.715,
46
+ "step": 200
47
+ },
48
+ {
49
+ "epoch": 0.14607069821793747,
50
+ "grad_norm": 0.739029586315155,
51
+ "learning_rate": 7.259475218658893e-06,
52
+ "loss": 1.1691,
53
+ "step": 250
54
+ },
55
+ {
56
+ "epoch": 0.175284837861525,
57
+ "grad_norm": 0.984306812286377,
58
+ "learning_rate": 8.717201166180759e-06,
59
+ "loss": 0.8688,
60
+ "step": 300
61
+ },
62
+ {
63
+ "epoch": 0.20449897750511248,
64
+ "grad_norm": 1.0378776788711548,
65
+ "learning_rate": 9.999906425502512e-06,
66
+ "loss": 0.8005,
67
+ "step": 350
68
+ },
69
+ {
70
+ "epoch": 0.23371311714869997,
71
+ "grad_norm": 0.7030986547470093,
72
+ "learning_rate": 9.991850810731995e-06,
73
+ "loss": 0.7501,
74
+ "step": 400
75
+ },
76
+ {
77
+ "epoch": 0.23371311714869997,
78
+ "eval_loss": 0.71233069896698,
79
+ "eval_runtime": 75.7382,
80
+ "eval_samples_per_second": 19.026,
81
+ "eval_steps_per_second": 4.766,
82
+ "step": 400
83
+ },
84
+ {
85
+ "epoch": 0.26292725679228746,
86
+ "grad_norm": 0.7112348079681396,
87
+ "learning_rate": 9.970822689941807e-06,
88
+ "loss": 0.7232,
89
+ "step": 450
90
+ },
91
+ {
92
+ "epoch": 0.29214139643587494,
93
+ "grad_norm": 0.7040561437606812,
94
+ "learning_rate": 9.936876709681668e-06,
95
+ "loss": 0.6858,
96
+ "step": 500
97
+ },
98
+ {
99
+ "epoch": 0.32135553607946243,
100
+ "grad_norm": 0.5420087575912476,
101
+ "learning_rate": 9.890101086617094e-06,
102
+ "loss": 0.6758,
103
+ "step": 550
104
+ },
105
+ {
106
+ "epoch": 0.35056967572305,
107
+ "grad_norm": 0.7667332887649536,
108
+ "learning_rate": 9.830617378277503e-06,
109
+ "loss": 0.6676,
110
+ "step": 600
111
+ },
112
+ {
113
+ "epoch": 0.35056967572305,
114
+ "eval_loss": 0.6397307515144348,
115
+ "eval_runtime": 75.4863,
116
+ "eval_samples_per_second": 19.09,
117
+ "eval_steps_per_second": 4.782,
118
+ "step": 600
119
+ },
120
+ {
121
+ "epoch": 0.37978381536663747,
122
+ "grad_norm": 0.709941565990448,
123
+ "learning_rate": 9.758580167160203e-06,
124
+ "loss": 0.6336,
125
+ "step": 650
126
+ },
127
+ {
128
+ "epoch": 0.40899795501022496,
129
+ "grad_norm": 0.509796142578125,
130
+ "learning_rate": 9.674176659011176e-06,
131
+ "loss": 0.6487,
132
+ "step": 700
133
+ },
134
+ {
135
+ "epoch": 0.43821209465381245,
136
+ "grad_norm": 0.696540117263794,
137
+ "learning_rate": 9.577626196326636e-06,
138
+ "loss": 0.6237,
139
+ "step": 750
140
+ },
141
+ {
142
+ "epoch": 0.46742623429739993,
143
+ "grad_norm": 0.5185802578926086,
144
+ "learning_rate": 9.46917968833962e-06,
145
+ "loss": 0.6352,
146
+ "step": 800
147
+ },
148
+ {
149
+ "epoch": 0.46742623429739993,
150
+ "eval_loss": 0.6110621690750122,
151
+ "eval_runtime": 75.3303,
152
+ "eval_samples_per_second": 19.129,
153
+ "eval_steps_per_second": 4.792,
154
+ "step": 800
155
+ },
156
+ {
157
+ "epoch": 0.4966403739409874,
158
+ "grad_norm": 0.6223486661911011,
159
+ "learning_rate": 9.349118958972965e-06,
160
+ "loss": 0.6465,
161
+ "step": 850
162
+ },
163
+ {
164
+ "epoch": 0.5258545135845749,
165
+ "grad_norm": 0.6150782108306885,
166
+ "learning_rate": 9.217756014453116e-06,
167
+ "loss": 0.6365,
168
+ "step": 900
169
+ },
170
+ {
171
+ "epoch": 0.5550686532281625,
172
+ "grad_norm": 0.5226706266403198,
173
+ "learning_rate": 9.07543223248809e-06,
174
+ "loss": 0.6095,
175
+ "step": 950
176
+ },
177
+ {
178
+ "epoch": 0.5842827928717499,
179
+ "grad_norm": 0.7013393044471741,
180
+ "learning_rate": 8.922517475116697e-06,
181
+ "loss": 0.6019,
182
+ "step": 1000
183
+ },
184
+ {
185
+ "epoch": 0.5842827928717499,
186
+ "eval_loss": 0.5948120951652527,
187
+ "eval_runtime": 77.78,
188
+ "eval_samples_per_second": 18.527,
189
+ "eval_steps_per_second": 4.641,
190
+ "step": 1000
191
+ },
192
+ {
193
+ "epoch": 0.6134969325153374,
194
+ "grad_norm": 0.7205643057823181,
195
+ "learning_rate": 8.75940912753447e-06,
196
+ "loss": 0.6086,
197
+ "step": 1050
198
+ },
199
+ {
200
+ "epoch": 0.6427110721589249,
201
+ "grad_norm": 0.5235279202461243,
202
+ "learning_rate": 8.586531065394169e-06,
203
+ "loss": 0.5858,
204
+ "step": 1100
205
+ },
206
+ {
207
+ "epoch": 0.6719252118025124,
208
+ "grad_norm": 0.5805732011795044,
209
+ "learning_rate": 8.404332553264548e-06,
210
+ "loss": 0.6023,
211
+ "step": 1150
212
+ },
213
+ {
214
+ "epoch": 0.7011393514461,
215
+ "grad_norm": 0.6715013384819031,
216
+ "learning_rate": 8.213287077110033e-06,
217
+ "loss": 0.6163,
218
+ "step": 1200
219
+ },
220
+ {
221
+ "epoch": 0.7011393514461,
222
+ "eval_loss": 0.5841032266616821,
223
+ "eval_runtime": 77.5353,
224
+ "eval_samples_per_second": 18.585,
225
+ "eval_steps_per_second": 4.656,
226
+ "step": 1200
227
+ },
228
+ {
229
+ "epoch": 0.7303534910896874,
230
+ "grad_norm": 0.6179790496826172,
231
+ "learning_rate": 8.013891113825348e-06,
232
+ "loss": 0.6079,
233
+ "step": 1250
234
+ },
235
+ {
236
+ "epoch": 0.7595676307332749,
237
+ "grad_norm": 0.6922735571861267,
238
+ "learning_rate": 7.806662841022781e-06,
239
+ "loss": 0.6136,
240
+ "step": 1300
241
+ },
242
+ {
243
+ "epoch": 0.7887817703768624,
244
+ "grad_norm": 0.5134425163269043,
245
+ "learning_rate": 7.592140790424999e-06,
246
+ "loss": 0.5864,
247
+ "step": 1350
248
+ },
249
+ {
250
+ "epoch": 0.8179959100204499,
251
+ "grad_norm": 0.704928457736969,
252
+ "learning_rate": 7.370882448362868e-06,
253
+ "loss": 0.6287,
254
+ "step": 1400
255
+ },
256
+ {
257
+ "epoch": 0.8179959100204499,
258
+ "eval_loss": 0.5772307515144348,
259
+ "eval_runtime": 76.579,
260
+ "eval_samples_per_second": 18.817,
261
+ "eval_steps_per_second": 4.714,
262
+ "step": 1400
263
+ },
264
+ {
265
+ "epoch": 0.8472100496640373,
266
+ "grad_norm": 0.6850032210350037,
267
+ "learning_rate": 7.143462807015271e-06,
268
+ "loss": 0.5862,
269
+ "step": 1450
270
+ },
271
+ {
272
+ "epoch": 0.8764241893076249,
273
+ "grad_norm": 0.4771438539028168,
274
+ "learning_rate": 6.910472870155804e-06,
275
+ "loss": 0.5867,
276
+ "step": 1500
277
+ },
278
+ {
279
+ "epoch": 0.9056383289512124,
280
+ "grad_norm": 0.665285050868988,
281
+ "learning_rate": 6.672518117289569e-06,
282
+ "loss": 0.5752,
283
+ "step": 1550
284
+ },
285
+ {
286
+ "epoch": 0.9348524685947999,
287
+ "grad_norm": 0.6237497329711914,
288
+ "learning_rate": 6.430216930171352e-06,
289
+ "loss": 0.5766,
290
+ "step": 1600
291
+ },
292
+ {
293
+ "epoch": 0.9348524685947999,
294
+ "eval_loss": 0.5714595913887024,
295
+ "eval_runtime": 75.4593,
296
+ "eval_samples_per_second": 19.096,
297
+ "eval_steps_per_second": 4.784,
298
+ "step": 1600
299
+ }
300
+ ],
301
+ "logging_steps": 50,
302
+ "max_steps": 3424,
303
+ "num_input_tokens_seen": 0,
304
+ "num_train_epochs": 2,
305
+ "save_steps": 200,
306
+ "stateful_callbacks": {
307
+ "EarlyStoppingCallback": {
308
+ "args": {
309
+ "early_stopping_patience": 3,
310
+ "early_stopping_threshold": 0.01
311
+ },
312
+ "attributes": {
313
+ "early_stopping_patience_counter": 2
314
+ }
315
+ },
316
+ "TrainerControl": {
317
+ "args": {
318
+ "should_epoch_stop": false,
319
+ "should_evaluate": false,
320
+ "should_log": false,
321
+ "should_save": true,
322
+ "should_training_stop": false
323
+ },
324
+ "attributes": {}
325
+ }
326
+ },
327
+ "total_flos": 4.000349389504205e+17,
328
+ "train_batch_size": 4,
329
+ "trial_name": null,
330
+ "trial_params": null
331
+ }
output/buildwellai-qwen3-14b-v2/checkpoint-1600/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4c420a33adb38f7d6f12b2f291fb0cc9ef19643591157b66a8d09e4a26a7683
3
+ size 6417