Files
mask-ddpm/example/config.json
2026-01-22 21:02:56 +08:00

31 lines
732 B
JSON

{
"data_path": "../../dataset/hai/hai-21.03/train1.csv.gz",
"data_glob": "../../dataset/hai/hai-21.03/train*.csv.gz",
"split_path": "./feature_split.json",
"stats_path": "./results/cont_stats.json",
"vocab_path": "./results/disc_vocab.json",
"out_dir": "./results",
"device": "auto",
"timesteps": 400,
"batch_size": 256,
"seq_len": 256,
"epochs": 12,
"max_batches": 8000,
"lambda": 0.5,
"lr": 0.0005,
"seed": 1337,
"log_every": 10,
"ckpt_every": 50,
"ema_decay": 0.999,
"use_ema": true,
"clip_k": 5.0,
"grad_clip": 1.0,
"use_condition": true,
"condition_type": "file_id",
"cond_dim": 32,
"use_tanh_eps": true,
"eps_scale": 1.0,
"sample_batch_size": 8,
"sample_seq_len": 256
}