Upload task2_bilstm_config.json with huggingface_hub
Browse files- task2_bilstm_config.json +23 -0
task2_bilstm_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"data_dir": "data",
|
| 3 |
+
"output_dir": "outputs",
|
| 4 |
+
"embed_size": 256,
|
| 5 |
+
"hidden_size": 512,
|
| 6 |
+
"num_layers": 2,
|
| 7 |
+
"dropout": 0.2,
|
| 8 |
+
"batch_size": 2560,
|
| 9 |
+
"lr": 0.001,
|
| 10 |
+
"weight_decay": 1e-05,
|
| 11 |
+
"num_epochs": 100,
|
| 12 |
+
"seq_len": 32,
|
| 13 |
+
"mask_prob": 0.15,
|
| 14 |
+
"min_word_freq": 1,
|
| 15 |
+
"early_stop_patience": 10,
|
| 16 |
+
"grad_clip": 5.0,
|
| 17 |
+
"checkpoint_path": "outputs/checkpoints/task2_bilstm_best.pt",
|
| 18 |
+
"use_wandb": false,
|
| 19 |
+
"wandb_project": "nlp-assignment3",
|
| 20 |
+
"wandb_name": "task2_bilstm",
|
| 21 |
+
"hf_repo_id": "nikhilrayaprolu/task2_bilstm",
|
| 22 |
+
"hf_filename": "task2_bilstm.pt"
|
| 23 |
+
}
|