Views
No views yet
so101-table-cleanup dataset.(B, T, C, H, W)max_state_dim=14 and action_dim=7.so101-table-cleanup (LeRobot)VJEPANestedAgent code structure to load.1from gr00t.model.vjepa_nested_pipeline import VJEPANestedAgent, VJEPANestedConfig
2from transformers import AutoConfig, AutoModel
3
4# Load config
5config = VJEPANestedConfig.from_pretrained("cbjp404/vjepa-nested-agent-l40")
6
7# Initialize model
8model = VJEPANestedAgent(config)
9
10# Load weights (example using safetensors)
11from safetensors.torch import load_file
12state_dict = load_file("model.safetensors")
13model.load_state_dict(state_dict)video: (B, T, C, H, W)state: (B, state_dim) (padded to 14)action: (B, T, action_dim) (for training)action_mask: (B, T, 1)embodiment_id: (B,)