Backup Qwen3.5-397B-data custom SFT adapter qwen35-397b-data-qwen35-9b-custom-sft-20260630T042600Z

#4
Files changed (3) hide show
  1. README.md +194 -232
  2. adapter_config.json +7 -5
  3. adapter_model.safetensors +1 -1
README.md CHANGED
@@ -1,245 +1,207 @@
1
  ---
2
- library_name: peft
3
  base_model: Qwen/Qwen3.5-9B
 
4
  pipeline_tag: text-generation
5
- datasets:
6
- - benchflow/env0-experiment-trajectories
7
  tags:
8
  - base_model:adapter:Qwen/Qwen3.5-9B
9
  - lora
10
- - peft
11
- - sft
12
- - env-0
13
- - openhands
14
- - daytona
15
- - qwen
16
  ---
17
 
18
- # BenchFlow Qwen3.5-9B Env-0 Mobile SFT LoRA Adapter
19
-
20
- This repository now points to the current env-0-mobile PR828 SFT adapter:
21
-
22
- `env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z`
23
-
24
- It replaces the earlier SFT adapter that was documented for the Prime
25
- `general-agent` reproduction. The repository contains a PEFT LoRA adapter only;
26
- it does not contain the `Qwen/Qwen3.5-9B` base weights.
27
-
28
- ## Release Summary
29
-
30
- | Field | Value |
31
- | --- | --- |
32
- | Adapter repo | `benchflow/benchflow-qwen35-9b` |
33
- | Current version | `env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z` |
34
- | Model tag | `env0-mobile-pr828-20260625` |
35
- | Base checkpoint | `Qwen/Qwen3.5-9B` |
36
- | Base checkpoint form | Full, non-quantized source checkpoint; frozen during LoRA SFT |
37
- | Adapter type | LoRA / PEFT |
38
- | Main training run | `env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z` |
39
- | Training task source | `env-0-mobile/tasks-eval` |
40
- | Training artifact source | `benchflow/env0-experiment-trajectories/experiments/env0-mobile-pr828/training/env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z` |
41
- | Teacher trajectory run | `pr828-env0-mobile-full300-azure-openhands-daytona-20260625T041236Z` |
42
- | Baseline run | `pr828-env0-mobile-baseline-full300-qwen35-9b-a100-20260625T054948Z` |
43
- | Post-SFT eval run | `pr828-env0-mobile-sft-full300-qwen35-9b-h100-20260625T100226Z` |
44
- | W&B run | `https://wandb.ai/benchflow-ai/env0-mobile-pr828-qwen35-sft-20260625-h100/runs/env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z` |
45
- | Published to main | `2026-06-25` |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
- ## Intended Use
48
 
49
- This adapter is an experiment artifact for measuring whether SFT on
50
- BenchFlow/Daytona/OpenHands env-0-mobile trajectories improves task pass rate
51
- for `Qwen/Qwen3.5-9B`. It is intended for controlled evaluation and further
52
- research, not for production autonomous operation.
53
 
54
- ## Data Recipe
55
 
56
- The training rows were generated by running all 300 tasks under
57
- `env-0-mobile/tasks-eval` with:
58
 
59
- - BenchFlow PR `benchflow-ai/benchflow#828`;
60
- - Daytona sandboxes;
61
- - OpenHands ACP agent;
62
- - Azure GPT-5.4-mini teacher;
63
- - `bench train convert` to Prime-RL SFT-compatible JSONL.
64
-
65
- The canonical teacher dataset has:
66
-
67
- | Field | Value |
68
- | --- | --- |
69
- | Canonical rows | `300` |
70
- | Teacher pass count | `83/300` |
71
- | Source LLM exchanges | `2163` |
72
- | Rows with tool calls | `175` |
73
- | Skipped rows after canonicalization | `0` |
74
-
75
- Training data artifact:
76
-
77
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/env0-mobile-pr828/pr828-env0-mobile-full300-azure-openhands-daytona-20260625T041236Z`
78
-
79
- ## Training Parameters
80
-
81
- | Field | Value |
82
- | --- | --- |
83
- | Trainer | Custom Transformers + PEFT LoRA SFT |
84
- | Model loaded for SFT | `Qwen/Qwen3.5-9B` full BF16 base weights |
85
- | Quantization | None |
86
- | Adapter | LoRA |
87
- | LoRA rank | `32` |
88
- | LoRA alpha | `64` |
89
- | LoRA dropout | `0.05` |
90
- | Target modules | `q_proj`, `k_proj`, `v_proj`, `o_proj`, `gate_proj`, `up_proj`, `down_proj` |
91
- | Sequence length | `8192` |
92
- | Micro batch size | `1` |
93
- | Gradient accumulation | `8` |
94
- | Learning rate | `1e-4` |
95
- | Max steps | `300` |
96
- | Saved checkpoints | `100`, `200`, `300` |
97
- | Hardware | Prime Intellect 1x H100 80GB, `massedcompute`, `$2.35/hr` |
98
- | W&B project | `env0-mobile-pr828-qwen35-sft-20260625-h100` |
99
-
100
- The A100 40GB feasibility check failed with CUDA OOM at `max_length=8192`.
101
- The H100 run completed the full epoch successfully.
102
-
103
- ## Training Result
104
-
105
- | Metric | Value |
106
- | --- | ---: |
107
- | Completed step | `300` |
108
- | Best step | `300` |
109
- | Best eval loss | `0.4590291380882263` |
110
- | Training rows | `300` |
111
- | Eval rows used during training | `1` |
112
- | Final adapter file | `adapter_model.safetensors` |
113
- | Final adapter size | `232818064` bytes |
114
-
115
- Training artifacts:
116
-
117
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/env0-mobile-pr828/training/env0-mobile-pr828-qwen35-bf16-lora-8k-h100-20260625T084605Z`
118
-
119
- ## Evaluation Results
120
-
121
- All rows below use the same 300-task `env-0-mobile/tasks-eval` denominator and
122
- canonicalized result selection.
123
-
124
- | Model / stage | Pass | Pass rate |
125
- | --- | ---: | ---: |
126
- | Azure GPT-5.4-mini teacher | `83/300` | `27.67%` |
127
- | Qwen3.5-9B base, self-hosted official full weights | `4/300` | `1.33%` |
128
- | Qwen3.5-9B SFT adapter | `16/300` | `5.33%` |
129
-
130
- Lift over base:
131
-
132
- - absolute: `+12` passes, `+4.00` percentage points;
133
- - relative pass-count lift: `4.0x`.
134
-
135
- On the subset of 83 tasks passed by the GPT-5.4-mini teacher:
136
-
137
- | Model / stage | Pass | Pass rate |
138
- | --- | ---: | ---: |
139
- | Qwen3.5-9B base | `3/83` | `3.61%` |
140
- | Qwen3.5-9B SFT adapter | `13/83` | `15.66%` |
141
-
142
- Post-SFT eval artifacts:
143
-
144
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/env0-mobile-pr828/pr828-env0-mobile-sft-full300-qwen35-9b-h100-20260625T100226Z`
145
-
146
- Baseline artifacts:
147
-
148
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/env0-mobile-pr828/pr828-env0-mobile-baseline-full300-qwen35-9b-a100-20260625T054948Z`
149
-
150
- ## Fireworks-Hosted env-0 Standard60 Results
151
-
152
- A same-host Fireworks comparison has now been completed on the current
153
- `env-0/tasks` standard60 denominator. This is separate from the 300-task
154
- `env-0-mobile/tasks-eval` denominator above.
155
-
156
- | Field | Value |
157
- | --- | --- |
158
- | HF trajectory index | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35` |
159
- | Baseline deployment | `openai/accounts/bingran-you/deployments/env0-qwen3p5-9b-standard60` |
160
- | SFT deployment | `openai/accounts/bingran-you/deployments/benchflow-qwen35-9b-env0-mobile-sft-live` |
161
- | Agent / sandbox | OpenHands + Daytona |
162
- | Skill mode | `with-skill` |
163
- | Usage tracking | `off` |
164
- | SFT tool support | `supportsTools=true`; direct smoke returned structured OpenAI `message.tool_calls` |
165
- | GitHub experiment log | `https://github.com/benchflow-ai/env-0-experiment/blob/main/experiments/fireworks-qwen35-180/EXPERIMENT_LOG.md` |
166
- | GitHub experiment report | `https://github.com/benchflow-ai/env-0-experiment/blob/main/experiments/fireworks-qwen35-180/EXPERIMENT_REPORT.md` |
167
- | Detailed GitHub result doc | `https://github.com/benchflow-ai/env-0-experiment/blob/main/experiments/fireworks-qwen35-180/reports/2026-06-27-fireworks-qwen35-standard60-3trials.md` |
168
-
169
- ### Final 3-trial comparison
170
-
171
- | Model / stage | Trials | Rows | Strict pass | Pass rate | Rows with tools | Unscored rows |
172
- | --- | ---: | ---: | ---: | ---: | ---: | ---: |
173
- | Fireworks Qwen3.5 baseline | 3 | 180 | `19/180` | `10.56%` | `175/180` | `0` |
174
- | Fireworks BenchFlow Qwen3.5 SFT | 3 | 180 | `24/180` | `13.33%` | `180/180` | `0` |
175
-
176
- SFT is directionally higher by `+5` passes, or `+2.78` percentage points.
177
- This should not be presented as a statistically proven pass-rate lift: a rough
178
- two-proportion check gives `z ~= 0.81`, two-sided `p ~= 0.42`, and a 95%
179
- confidence interval for the pass-rate delta of about `[-3.92 pp, +9.47 pp]`.
180
-
181
- ### Trial breakdown
182
-
183
- | Model | Trial | Strict pass | HF folder |
184
- | --- | --- | ---: | --- |
185
- | Baseline | `trial-01-20260626T165651Z` | `5/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/baselines/qwen3p5-9b-standard60-3trials/trial-01-20260626T165651Z` |
186
- | Baseline | `trial-02-20260627T055735Z` | `7/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/baselines/qwen3p5-9b-standard60-3trials/trial-02-20260627T055735Z` |
187
- | Baseline | `trial-03-20260627T072748Z-proxy` | `7/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/baselines/qwen3p5-9b-standard60-3trials/trial-03-20260627T072748Z-proxy` |
188
- | SFT | `trial-01-20260627T022446Z` | `8/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/sft/benchflow-qwen35-9b-env0-mobile-sft-live-standard60-3trials/trial-01-20260627T022446Z` |
189
- | SFT | `trial-02-20260627T082221Z` | `6/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/sft/benchflow-qwen35-9b-env0-mobile-sft-live-standard60-3trials/trial-02-20260627T082221Z` |
190
- | SFT | `trial-03-20260627T090839Z` | `10/60` | `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/sft/benchflow-qwen35-9b-env0-mobile-sft-live-standard60-3trials/trial-03-20260627T090839Z` |
191
-
192
- ### Aggregate artifacts
193
-
194
- - Baseline 180-row trajectories:
195
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/baselines/qwen3p5-9b-standard60-3trials`
196
- - Baseline aggregate:
197
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/baselines/qwen3p5-9b-standard60-3trials/aggregate`
198
- - SFT 180-row trajectories:
199
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/sft/benchflow-qwen35-9b-env0-mobile-sft-live-standard60-3trials`
200
- - SFT aggregate:
201
- `https://huggingface.co/datasets/benchflow/env0-experiment-trajectories/tree/main/experiments/fireworks-qwen35/sft/benchflow-qwen35-9b-env0-mobile-sft-live-standard60-3trials/aggregate`
202
-
203
- ### Serving interpretation
204
-
205
- - The Fireworks SFT deployment/tool-call bridge is validated. The failed merged
206
- model path that emitted textual `<tool_call>` blocks is not the deployment
207
- path used for these final runs.
208
- - The SFT final rows all have nonzero OpenHands tool calls (`180/180`).
209
- - Baseline trial 03 used a local OpenAI-compatible proxy that forwarded to the
210
- Fireworks baseline deployment and normalized OpenHands shell-tool aliases;
211
- the upstream model host remained Fireworks.
212
- - Retry rows replace only unscored provider, sandbox, or verifier artifacts.
213
- Scored model timeouts and scored task failures are retained.
214
-
215
- ## Loading
216
-
217
- ```python
218
- import torch
219
- from peft import PeftModel
220
- from transformers import AutoModelForCausalLM, AutoTokenizer
221
-
222
- base = AutoModelForCausalLM.from_pretrained(
223
- "Qwen/Qwen3.5-9B",
224
- torch_dtype=torch.bfloat16,
225
- trust_remote_code=True,
226
- )
227
- model = PeftModel.from_pretrained(base, "benchflow/benchflow-qwen35-9b")
228
- tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3.5-9B", trust_remote_code=True)
229
- ```
230
-
231
- ## Caveats
232
-
233
- - This is a LoRA adapter. Load it on top of `Qwen/Qwen3.5-9B`.
234
- - The 300-task env-0-mobile results and the 60-task env-0 standard60 results
235
- use different denominators and should not be mixed in one pass-rate claim.
236
- - The Fireworks standard60 SFT run is directionally higher than the Fireworks
237
- standard60 baseline, but the observed lift is not statistically strong at
238
- three trials per task.
239
- - The strongest 300-task env-0-mobile lift came from auth-revoke and a small
240
- number of gcal tasks; gdoc/gdrive/gmail/multi-invite remain weak and should
241
- be analyzed before a second epoch.
242
- - The env-0-mobile Dockerfiles referenced
243
- `ghcr.io/benchflow-ai/env-0-base:latest`, which was unavailable during the
244
- run. The experiment used the public mirror
245
- `ghcr.io/oliver-dowhiz/env-0-base:latest`.
 
1
  ---
 
2
  base_model: Qwen/Qwen3.5-9B
3
+ library_name: peft
4
  pipeline_tag: text-generation
 
 
5
  tags:
6
  - base_model:adapter:Qwen/Qwen3.5-9B
7
  - lora
8
+ - transformers
 
 
 
 
 
9
  ---
10
 
11
+ # Model Card for Model ID
12
+
13
+ <!-- Provide a quick summary of what the model is/does. -->
14
+
15
+
16
+
17
+ ## Model Details
18
+
19
+ ### Model Description
20
+
21
+ <!-- Provide a longer summary of what this model is. -->
22
+
23
+
24
+
25
+ - **Developed by:** [More Information Needed]
26
+ - **Funded by [optional]:** [More Information Needed]
27
+ - **Shared by [optional]:** [More Information Needed]
28
+ - **Model type:** [More Information Needed]
29
+ - **Language(s) (NLP):** [More Information Needed]
30
+ - **License:** [More Information Needed]
31
+ - **Finetuned from model [optional]:** [More Information Needed]
32
+
33
+ ### Model Sources [optional]
34
+
35
+ <!-- Provide the basic links for the model. -->
36
+
37
+ - **Repository:** [More Information Needed]
38
+ - **Paper [optional]:** [More Information Needed]
39
+ - **Demo [optional]:** [More Information Needed]
40
+
41
+ ## Uses
42
+
43
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
44
+
45
+ ### Direct Use
46
+
47
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
48
+
49
+ [More Information Needed]
50
+
51
+ ### Downstream Use [optional]
52
+
53
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
54
+
55
+ [More Information Needed]
56
+
57
+ ### Out-of-Scope Use
58
+
59
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
60
+
61
+ [More Information Needed]
62
+
63
+ ## Bias, Risks, and Limitations
64
+
65
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
66
+
67
+ [More Information Needed]
68
+
69
+ ### Recommendations
70
+
71
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
72
+
73
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
74
+
75
+ ## How to Get Started with the Model
76
+
77
+ Use the code below to get started with the model.
78
+
79
+ [More Information Needed]
80
+
81
+ ## Training Details
82
+
83
+ ### Training Data
84
+
85
+ <!-- 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. -->
86
+
87
+ [More Information Needed]
88
+
89
+ ### Training Procedure
90
+
91
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
92
+
93
+ #### Preprocessing [optional]
94
+
95
+ [More Information Needed]
96
+
97
+
98
+ #### Training Hyperparameters
99
+
100
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
101
+
102
+ #### Speeds, Sizes, Times [optional]
103
+
104
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
105
+
106
+ [More Information Needed]
107
+
108
+ ## Evaluation
109
+
110
+ <!-- This section describes the evaluation protocols and provides the results. -->
111
+
112
+ ### Testing Data, Factors & Metrics
113
+
114
+ #### Testing Data
115
+
116
+ <!-- This should link to a Dataset Card if possible. -->
117
+
118
+ [More Information Needed]
119
+
120
+ #### Factors
121
+
122
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
123
+
124
+ [More Information Needed]
125
+
126
+ #### Metrics
127
+
128
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
129
+
130
+ [More Information Needed]
131
+
132
+ ### Results
133
+
134
+ [More Information Needed]
135
+
136
+ #### Summary
137
+
138
+
139
+
140
+ ## Model Examination [optional]
141
+
142
+ <!-- Relevant interpretability work for the model goes here -->
143
+
144
+ [More Information Needed]
145
+
146
+ ## Environmental Impact
147
+
148
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
149
+
150
+ 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).
151
+
152
+ - **Hardware Type:** [More Information Needed]
153
+ - **Hours used:** [More Information Needed]
154
+ - **Cloud Provider:** [More Information Needed]
155
+ - **Compute Region:** [More Information Needed]
156
+ - **Carbon Emitted:** [More Information Needed]
157
+
158
+ ## Technical Specifications [optional]
159
+
160
+ ### Model Architecture and Objective
161
+
162
+ [More Information Needed]
163
+
164
+ ### Compute Infrastructure
165
+
166
+ [More Information Needed]
167
+
168
+ #### Hardware
169
+
170
+ [More Information Needed]
171
+
172
+ #### Software
173
+
174
+ [More Information Needed]
175
+
176
+ ## Citation [optional]
177
+
178
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
179
+
180
+ **BibTeX:**
181
+
182
+ [More Information Needed]
183
+
184
+ **APA:**
185
+
186
+ [More Information Needed]
187
+
188
+ ## Glossary [optional]
189
+
190
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
191
+
192
+ [More Information Needed]
193
+
194
+ ## More Information [optional]
195
+
196
+ [More Information Needed]
197
 
198
+ ## Model Card Authors [optional]
199
 
200
+ [More Information Needed]
 
 
 
201
 
202
+ ## Model Card Contact
203
 
204
+ [More Information Needed]
205
+ ### Framework versions
206
 
207
+ - PEFT 0.19.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adapter_config.json CHANGED
@@ -19,27 +19,29 @@
19
  "lora_alpha": 64,
20
  "lora_bias": false,
21
  "lora_dropout": 0.05,
 
22
  "megatron_config": null,
23
  "megatron_core": "megatron.core",
24
  "modules_to_save": null,
25
  "peft_type": "LORA",
26
- "peft_version": "0.18.0",
27
  "qalora_group_size": 16,
28
  "r": 32,
29
  "rank_pattern": {},
30
  "revision": null,
31
  "target_modules": [
32
- "o_proj",
33
- "v_proj",
34
  "k_proj",
35
- "q_proj",
36
  "up_proj",
 
 
 
37
  "gate_proj",
38
- "down_proj"
39
  ],
40
  "target_parameters": null,
41
  "task_type": "CAUSAL_LM",
42
  "trainable_token_indices": null,
 
43
  "use_dora": false,
44
  "use_qalora": false,
45
  "use_rslora": false
 
19
  "lora_alpha": 64,
20
  "lora_bias": false,
21
  "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
  "megatron_config": null,
24
  "megatron_core": "megatron.core",
25
  "modules_to_save": null,
26
  "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
  "qalora_group_size": 16,
29
  "r": 32,
30
  "rank_pattern": {},
31
  "revision": null,
32
  "target_modules": [
 
 
33
  "k_proj",
 
34
  "up_proj",
35
+ "down_proj",
36
+ "v_proj",
37
+ "q_proj",
38
  "gate_proj",
39
+ "o_proj"
40
  ],
41
  "target_parameters": null,
42
  "task_type": "CAUSAL_LM",
43
  "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
  "use_dora": false,
46
  "use_qalora": false,
47
  "use_rslora": false
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb01c366d71c056bfc133717e7e782c1e4b67c3452cb2adde51b59c305031852
3
  size 232818064
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaa2b1a8de1c51548807d1c5781be45cc589c8150f8bebfd593a8d3f109ee358
3
  size 232818064