hfunknown commited on
Commit
001176d
·
verified ·
1 Parent(s): 38db828

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: mistralai/Mistral-7B-v0.3
4
+ tags:
5
+ - lora
6
+ - transformers
7
+ pipeline_tag: text-generation
8
+ ---
9
+
10
+ # mistral-7b-knapsack-lora-persistent
11
+
12
+ Anonymous supplementary release for a double-blind workshop submission. This is
13
+ one of four LoRA adapters (Mistral-7B-v0.3 / Llama-3.1-8B base model x
14
+ persistent/stateless training regime) fine-tuned on the Opaque Knapsack
15
+ agentic task, extending a prior single-base-model result (see the sibling
16
+ Qwen3-8B release) to a second base model family for the same reproducibility
17
+ review.
18
+
19
+ - **Base model:** [mistralai/Mistral-7B-v0.3](https://huggingface.co/mistralai/Mistral-7B-v0.3)
20
+ - **Training regime:** persistent (trained with a persistent Python interpreter runtime (state carries over across agent turns))
21
+ - **Seed:** 3407
22
+
23
+ ## Training configuration
24
+
25
+ Fine-tuned with [Axolotl](https://github.com/axolotl-ai-cloud/axolotl), LoRA
26
+ adapter, 4-bit NF4 quantized base:
27
+
28
+ | Hyperparameter | Value |
29
+ |---|---|
30
+ | lora_r | 64 |
31
+ | lora_alpha | 128 |
32
+ | lora_dropout | 0.05 |
33
+ | lora_target_modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
34
+ | learning_rate | 1e-4 |
35
+ | lr_scheduler | cosine |
36
+ | optimizer | adamw_torch |
37
+ | epochs | 3.0 |
38
+ | micro_batch_size | 1 |
39
+ | gradient_accumulation_steps | 16 |
40
+ | sequence_len | 16384 |
41
+ | sample_packing | false |
42
+ | seed | 3407 |
43
+ | training data | paired traces for the "persistent" regime (see paper Appendix for pairing/filtering procedure) |
44
+
45
+ Mistral-7B-v0.3 ships no chat_template -- trained with Axolotl's built-in `mistral_v2v3` template; serving/eval uses a hand-written template extending it with system-role support (folded into the next user turn, since `mistral_v2v3` only accepts user/assistant).
46
+
47
+ ## Provenance
48
+
49
+ Released anonymously alongside a NeurIPS workshop submission for
50
+ reproducibility review. Non-anonymous release (paper citation, full code, full
51
+ training traces) will follow after the review process concludes.