Upload training_config.json with huggingface_hub
Browse files- training_config.json +31 -0
training_config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "cross-encoder/nli-deberta-v3-base",
|
| 3 |
+
"hf_repo_id": "aryasuneesh-quilr/intent-crossencoder-deberta-v3-base",
|
| 4 |
+
"batch_size": 16,
|
| 5 |
+
"grad_accum_steps": 4,
|
| 6 |
+
"effective_batch": 64,
|
| 7 |
+
"lr": 1e-05,
|
| 8 |
+
"label_smoothing": 0.05,
|
| 9 |
+
"warmup_ratio": 0.06,
|
| 10 |
+
"max_len": 256,
|
| 11 |
+
"epochs": 10,
|
| 12 |
+
"patience": 3,
|
| 13 |
+
"primary_threshold": 0.3,
|
| 14 |
+
"eval_thresholds": [
|
| 15 |
+
0.1,
|
| 16 |
+
0.2,
|
| 17 |
+
0.3,
|
| 18 |
+
0.4,
|
| 19 |
+
0.5,
|
| 20 |
+
0.6,
|
| 21 |
+
0.7,
|
| 22 |
+
0.8,
|
| 23 |
+
0.9
|
| 24 |
+
],
|
| 25 |
+
"test_size": 0.1,
|
| 26 |
+
"val_size": 0.1,
|
| 27 |
+
"random_seed": 42,
|
| 28 |
+
"dataset_path": "/content/synthetic_training_rows_100.jsonl",
|
| 29 |
+
"run_timestamp": "20260223_073635",
|
| 30 |
+
"trained_at": "2026-02-23T08:35:15.785074"
|
| 31 |
+
}
|