Views
No views yet
rocochallenge2025 and additional collected datasets.rocochallenge2025 + temp_new_dataset) containing 241 episodes.sim_gearbox_assembly_demos_filteredhead_rgb (240x320)left_hand_rgb (240x320)right_hand_rgb (240x320)qpos (14-dim joint positions)ACTPolicy class. Ensure dataset_stats.pkl is loaded to normalize/unnormalize observations and actions correctly.1from policy import ACTPolicy
2import pickle
3
4# Load stats
5with open('dataset_stats.pkl', 'rb') as f:
6 stats = pickle.load(f)
7
8# Load policy
9policy = ACTPolicy(config)
10policy.load_state_dict(torch.load('policy_best.ckpt'))
11policy.cuda()
12policy.eval()