efficiencyx commited on
Commit
20147bd
·
verified ·
1 Parent(s): 25b46cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -8
README.md CHANGED
@@ -71,7 +71,7 @@ The dataset was constructed to preserve the character's tone, vocabulary, emotio
71
  | Parameter | Value |
72
  |:----------|:------|
73
  | Base model | `google/gemma-4-12b-it` |
74
- | Method | QLoRA (4-bit NF4) |
75
  | LoRA rank | 64 |
76
  | LoRA alpha | 128 |
77
  | Learning rate | 2e-5 |
@@ -83,11 +83,6 @@ The dataset was constructed to preserve the character's tone, vocabulary, emotio
83
  | Checkpoint interval | Every 30 steps |
84
  | Optimizer | AdamW (8-bit) |
85
 
86
-
87
- ### Why QLoRA instead of LoRA
88
-
89
- This fine-tune uses QLoRA (4-bit NF4 quantization during training) rather than standard full-precision LoRA. The rationale is analogous to Quantization-Aware Training (QAT): by training the adapter on a model that is already quantized to NF4, the learned weights inherently compensate for the precision loss introduced by quantization. This means the adapter is optimized for the same numerical conditions it will encounter at inference time when running on consumer-grade hardware with quantized GGUF models. A LoRA adapter trained at full precision may (and will) underperform when later applied to or merged into a quantized model, because the weight distributions it learned against no longer match the runtime precision.
90
-
91
  ### Infrastructure
92
 
93
  | Component | Detail |
@@ -119,7 +114,7 @@ Multiple adapter checkpoints are provided (steps 90, 120, 138) to allow users to
119
 
120
  ## Acknowledgments
121
 
 
122
  - **Google** for the [Gemma 4](https://ai.google.dev/gemma) model family
123
  - **Google Colaboratory** for allowing easy and cheap access to powerful GPU
124
- - **Unsloth** for the efficient fine-tuning framework
125
- - **IncontinentCell Studios** for *My Dystopian Robot Girlfriend*, the source material for Jun's character
 
71
  | Parameter | Value |
72
  |:----------|:------|
73
  | Base model | `google/gemma-4-12b-it` |
74
+ | Method | LoRA |
75
  | LoRA rank | 64 |
76
  | LoRA alpha | 128 |
77
  | Learning rate | 2e-5 |
 
83
  | Checkpoint interval | Every 30 steps |
84
  | Optimizer | AdamW (8-bit) |
85
 
 
 
 
 
 
86
  ### Infrastructure
87
 
88
  | Component | Detail |
 
114
 
115
  ## Acknowledgments
116
 
117
+ - **Incontinent Cell** for [*My Dystopian Robot Girlfriend*](https://incontinentcell.itch.io/), Jun's character
118
  - **Google** for the [Gemma 4](https://ai.google.dev/gemma) model family
119
  - **Google Colaboratory** for allowing easy and cheap access to powerful GPU
120
+ - **Unsloth** for the efficient fine-tuning framework