nikhilrayaprolu commited on
Commit
7994ba3
·
verified ·
1 Parent(s): d939cce

Upload task1_rnn_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. task1_rnn_config.json +20 -0
task1_rnn_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data_dir": "data",
3
+ "output_dir": "outputs",
4
+ "embed_size": 64,
5
+ "hidden_size": 256,
6
+ "num_layers": 2,
7
+ "dropout": 0.3,
8
+ "batch_size": 4096,
9
+ "lr": 0.001,
10
+ "weight_decay": 1e-05,
11
+ "num_epochs": 80,
12
+ "early_stop_patience": 12,
13
+ "grad_clip": 5.0,
14
+ "checkpoint_path": "outputs/checkpoints/task1_rnn_best.pt",
15
+ "use_wandb": true,
16
+ "wandb_project": "nlp-assignment3",
17
+ "wandb_name": "task1_rnn",
18
+ "hf_repo_id": "nikhilrayaprolu/task1_rnn",
19
+ "hf_filename": "task1_rnn.pt"
20
+ }