Skip to content
Open
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
1 change: 1 addition & 0 deletions lerobot/common/policies/act/configuration_act.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ class ACTConfig(PreTrainedConfig):
"""

# Input / output structure.
type: str = "act"
n_obs_steps: int = 1
chunk_size: int = 100
n_action_steps: int = 100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ class DiffusionConfig(PreTrainedConfig):
"""

# Inputs / output structure.
type: str = "diffusion"
n_obs_steps: int = 2
horizon: int = 16
n_action_steps: int = 8
Expand Down