Text Generation
Transformers
Safetensors
English
qwen2
conversational
text-generation-inference
krogoldAI commited on
Commit
7e36f6d
·
verified ·
1 Parent(s): cb98cf3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -146,7 +146,19 @@ The model underwent full fine-tuning (not parameter-efficient methods like LoRA)
146
 
147
  The training code can be found [here](Code/Fine-tuning.py).
148
 
149
- GRPO + SFT on 7.3k data from [krogoldAI/rag-query-analysis](https://huggingface.co/datasets/krogoldAI/rag-query-analysis/viewer) with:
 
 
 
 
 
 
 
 
 
 
 
 
150
 
151
  ```py
152
  NUM_EPOCHS = 2
 
146
 
147
  The training code can be found [here](Code/Fine-tuning.py).
148
 
149
+ GRPO on 3k data from [krogoldAI/rag-ambiguous-queries](https://huggingface.co/datasets/krogoldAI/rag-ambiguous-queries/) with:
150
+
151
+ ```py
152
+ NUM_EPOCHS = 1
153
+ PER_DEVICE_BATCH = 8
154
+ GRADIENT_ACCUMULATION = 1
155
+ LEARNING_RATE = 5e-6 # Low for GRPO stability
156
+ NUM_GENERATIONS = 2 # Number of generations per prompt for GRPO
157
+ MAX_NEW_TOKENS = 512 # Sufficient for XML output
158
+ WARMUP_STEPS = 50
159
+ ```
160
+
161
+ SFT on 7.3k data from [krogoldAI/rag-query-analysis](https://huggingface.co/datasets/krogoldAI/rag-query-analysis/) with:
162
 
163
  ```py
164
  NUM_EPOCHS = 2