Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model/sttf human36m #82

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions configs/sttf_human36m.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
dataset:
name: Human36MDataset
args:
path: /media/kaseris/FastData/Human3.6M-DMGNN/h36m.npz

loss:
name: SmoothL1Loss
args:
reduction: mean
beta: 0.01

collate_fn:
name: Human36MCollateFnWithRandomSampledContextWindow
args:
block_size: 10

logger:
name: TensorboardLogger
args:
log_dir: runs

optimizer:
name: AdamW
args:
lr: 0.0001
weight_decay: 0.0001

model:
name: SpatioTemporalTransformer
args:
n_joints: 32
input_dim: 4
d_model: 256
n_blocks: 3
n_heads: 8
d_head: 16
mlp_dim: 512
dropout: 0.5

runner:
name: Runner
args:
train_batch_size: 16
val_batch_size: 16
block_size: 8
log_gradient_info: false
device: cuda
n_epochs: 100
Loading