hfunknown commited on
Commit
adbb445
·
verified ·
1 Parent(s): 78b9749

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: meta-llama/Llama-3.1-8B
4
+ tags:
5
+ - lora
6
+ - transformers
7
+ pipeline_tag: text-generation
8
+ ---
9
+
10
+ # llama31-8b-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:** [meta-llama/Llama-3.1-8B](https://huggingface.co/meta-llama/Llama-3.1-8B)
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 | 32768 |
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
+ Base checkpoint's own chat-format tokens (e.g. `<|eot_id|>`) are untrained on this base (non-instruct) checkpoint -- trained and served with a hand-written minimal template using only real trained tokens (BOS/EOS + plain-text role prefixes), not Llama's native instruct template.
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.