nikhilrayaprolu commited on
Commit
cc170d4
·
verified ·
1 Parent(s): 279e60c

Upload task1_lstm_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. task1_lstm_config.json +20 -0
task1_lstm_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": 1024,
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_lstm_best.pt",
15
+ "use_wandb": true,
16
+ "wandb_project": "nlp-assignment3",
17
+ "wandb_name": "task1_lstm",
18
+ "hf_repo_id": "nikhilrayaprolu/task1_lstm",
19
+ "hf_filename": "task1_lstm.pt"
20
+ }