nikhilrayaprolu commited on
Commit
8d332ae
·
verified ·
1 Parent(s): 7a96bef

Upload task2_ssm_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. task2_ssm_config.json +23 -0
task2_ssm_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data_dir": "data",
3
+ "output_dir": "outputs",
4
+ "embed_size": 128,
5
+ "d_model": 256,
6
+ "state_size": 64,
7
+ "num_layers": 4,
8
+ "dropout": 0.1,
9
+ "batch_size": 1280,
10
+ "lr": 0.001,
11
+ "weight_decay": 1e-05,
12
+ "num_epochs": 60,
13
+ "seq_len": 32,
14
+ "min_word_freq": 1,
15
+ "early_stop_patience": 10,
16
+ "grad_clip": 5.0,
17
+ "checkpoint_path": "outputs/checkpoints/task2_ssm_best.pt",
18
+ "use_wandb": true,
19
+ "wandb_project": "nlp-assignment3",
20
+ "wandb_name": "task2_ssm",
21
+ "hf_repo_id": "nikhilrayaprolu/task2_ssm",
22
+ "hf_filename": "task2_ssm.pt"
23
+ }