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

Fix diffusion head test time layer norm statistics #88

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion octo/model/components/action_heads.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ class DiffusionActionHead(nn.Module):
# diffusion-specific config with sane defaults
time_dim: int = 32
num_blocks: int = 3
dropout_rate: float = 0.1
dropout_rate: float = 0.0
hidden_dim: int = 256
use_layer_norm: bool = True
diffusion_steps: int = 20
Expand Down
1 change: 1 addition & 0 deletions scripts/configs/octo_pretrain_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def get_config(config_string=None):
use_map=False,
pred_horizon=4,
action_dim=7,
dropout_rate=0.0,
)

# We augment differently for the primary and wrist cameras
Expand Down
Loading