-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yaml
36 lines (36 loc) · 1002 Bytes
/
config.yaml
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
General:
seed: 0
log_path: logs/test ### TODO: change this each time training to avoid overwriting logs
epochs: 1
patience: 5
Data:
data_path: '/root/project/dataset/annotations'
clip_duration: 2 # Duration of sampled clip for each video
num_frames: 16 # Number of frames to sample from each clip
batch_size: 8
num_workers: 8
video_path_prefix: '/root/project/dataset/hmdb51'
Model:
num_classes: 51
cross_attention:
num_freq_bands: 6 # Check paper
max_freq: 10. # Check paper
input_axis: 3 # Video has 3 axis
num_latents: 256
latent_dim: 512
cross_heads: 1
cross_dim_head: 64
attn_dropout: 0
ff_dropout: 0
fourier_encode_data: True
self_attention:
depth: 6
latent_dim: 512
latent_heads: 8
latent_dim_head: 64
num_classes: 51
attn_dropout: 0.
ff_dropout: 0.
lr: 0.001
weight_decay: 0.00001
epochs: 100