Skip to content

Commit

Permalink
fix hrdae
Browse files Browse the repository at this point in the history
  • Loading branch information
nnaakkaaii committed Jun 27, 2024
1 parent bc6298a commit 74859c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions hrdae/models/networks/hr_dae.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def create_hrdae3d(out_channels: int, opt: HRDAE3dOption) -> nn.Module:
motion_encoder,
opt.activation,
opt.aggregator,
opt.connection_aggregation,
opt.debug_show_dim,
)
return HRDAE3d(
Expand All @@ -96,6 +97,7 @@ def create_hrdae3d(out_channels: int, opt: HRDAE3dOption) -> nn.Module:
motion_encoder,
opt.activation,
opt.aggregator,
opt.connection_aggregation,
opt.debug_show_dim,
)

Expand Down
2 changes: 2 additions & 0 deletions test/models/networks/test_hr_dae.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ def test_hierarchical_decoder2d():
}
]
* 2,
aggregation="concatenation",
debug_show_dim=False,
)
x = net(x, cs)
Expand Down Expand Up @@ -127,6 +128,7 @@ def test_hierarchical_decoder3d():
}
]
* 2,
aggregation="concatenation",
debug_show_dim=False,
)
x = net(x, cs)
Expand Down

0 comments on commit 74859c4

Please sign in to comment.