Upload config.json with huggingface_hub
Browse files- config.json +15 -0
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "distilbert-base-uncased",
|
| 3 |
+
"max_length": 384,
|
| 4 |
+
"dropout": 0.1,
|
| 5 |
+
"freeze_layers": 4,
|
| 6 |
+
"batch_size": 16,
|
| 7 |
+
"epochs": 25,
|
| 8 |
+
"learning_rate": 3e-05,
|
| 9 |
+
"weight_decay": 0.01,
|
| 10 |
+
"early_stop_patience": 5,
|
| 11 |
+
"seed": 42,
|
| 12 |
+
"db_path": "/kaggle/input/datasets/ayushgupta07xx/sentinelops-corpus/corpus.db",
|
| 13 |
+
"output_dir": "/kaggle/working/classifier",
|
| 14 |
+
"use_wandb": true
|
| 15 |
+
}
|