-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdquartic_train_config.json
More file actions
49 lines (49 loc) · 1.29 KB
/
dquartic_train_config.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"data":{
"parquet_directory": "data/",
"ms2_data_path": null,
"ms1_data_path": null,
"normalize": "minmax"
},
"model":{
"checkpoint_path": "best_model.ckpt",
"num_epochs": 10000,
"warmup_epochs": 5,
"batch_size": 1,
"learning_rate": 0.00001,
"num_timesteps": 1000,
"beta_schedule_type": "cosine",
"pred_type": "eps",
"auto_normalize": true,
"ms1_loss_weight": 0.0,
"use_model": "UNet1d",
"CustomTransformer":{
"input_dim": 40000,
"hidden_dim": 1024,
"num_heads": 8,
"num_layers": 8
},
"UNet1d" : {
"dim": 4,
"channels": 1,
"dim_mults": [1, 2, 2, 3, 3, 4, 4],
"conditional": true,
"init_cond_channels": 1,
"attn_cond_channels": 1,
"tfer_dim_mult": 620,
"downsample_dim": 40000,
"simple": true
}
},
"wandb": {
"use_wandb": true,
"wandb_project": "dquartic",
"wandb_name": null,
"wandb_id": null,
"wandb_resume": null,
"wandb_architecture": "DDIM(UNet1d)",
"wandb_dataset": "MS2",
"wandb_mode": "offline"
},
"threads": 4
}