Upload training_config.json with huggingface_hub
Browse files- training_config.json +18 -0
training_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "models/base-models/CodeLlama-7B-Instruct",
|
| 3 |
+
"adapter_path": null,
|
| 4 |
+
"dataset": "datasets/processed/split_chat_format/train.jsonl",
|
| 5 |
+
"output_dir": "training-outputs/codellama-fifo-v2-chat",
|
| 6 |
+
"hyperparameters": {
|
| 7 |
+
"max_length": 1536,
|
| 8 |
+
"num_epochs": 5,
|
| 9 |
+
"batch_size": 4,
|
| 10 |
+
"gradient_accumulation": 4,
|
| 11 |
+
"learning_rate": 2e-05,
|
| 12 |
+
"lora_r": 48,
|
| 13 |
+
"lora_alpha": 96,
|
| 14 |
+
"lora_dropout": 0.15
|
| 15 |
+
},
|
| 16 |
+
"training_mode": "fresh",
|
| 17 |
+
"resumed_from_checkpoint": false
|
| 18 |
+
}
|