File size: 728 Bytes
99eaa37 | 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 | model:
name: "EagleMeshTransformer"
architecture: "GraphViT"
state_size: 4
w_size: 32
datapipe:
source:
data_dir: "./data/fake/Eagle_dataset"
cluster_dir: "./data/fake/Eagle_dataset"
splits_dir: "./data/fake/splits"
verbose: false
data:
window_length_train: 3
window_length_val: 3
window_length_test: 3
n_cluster: 1
normalized: true
type_as_onehot: true
with_cells: true
dataloader:
batch_size: 1
num_workers: 0
training:
max_epoch: 1
lr: 1.0e-4
loss_alpha: 0.1
patience: 10
checkpoint_dir: "./weight"
seed: 0
device: "cpu"
inference:
checkpoint_path: "./weight/best_model.pth"
output_dir: "./result/output"
batch_size: 1
device: "cpu"
|