├── .gitignore ├── README.md ├── assets ├── ckpts │ └── G1 │ │ ├── policy.json │ │ ├── policy.onnx │ │ └── policy.pt ├── data │ ├── drag_object.npy │ ├── hug.npy │ ├── move_object.npy │ ├── pick_ball.npy │ └── walk.npy └── g1 │ ├── README.md │ ├── g1.xml │ └── meshes │ ├── head_link.STL │ ├── left_ankle_pitch_link.STL │ ├── left_ankle_roll_link.STL │ ├── left_elbow_link.STL │ ├── left_hand_index_0_link.STL │ ├── left_hand_index_1_link.STL │ ├── left_hand_middle_0_link.STL │ ├── left_hand_middle_1_link.STL │ ├── left_hand_palm_link.STL │ ├── left_hand_thumb_0_link.STL │ ├── left_hand_thumb_1_link.STL │ ├── left_hand_thumb_2_link.STL │ ├── left_hip_pitch_link.STL │ ├── left_hip_roll_link.STL │ ├── left_hip_yaw_link.STL │ ├── left_knee_link.STL │ ├── left_rubber_hand.STL │ ├── left_shoulder_pitch_link.STL │ ├── left_shoulder_roll_link.STL │ ├── left_shoulder_yaw_link.STL │ ├── left_wrist_pitch_link.STL │ ├── left_wrist_roll_link.STL │ ├── left_wrist_roll_rubber_hand.STL │ ├── left_wrist_yaw_link.STL │ ├── logo_link.STL │ ├── pelvis.STL │ ├── pelvis_contour_link.STL │ ├── right_ankle_pitch_link.STL │ ├── right_ankle_roll_link.STL │ ├── right_elbow_link.STL │ ├── right_hand_index_0_link.STL │ ├── right_hand_index_1_link.STL │ ├── right_hand_middle_0_link.STL │ ├── right_hand_middle_1_link.STL │ ├── right_hand_palm_link.STL │ ├── right_hand_thumb_0_link.STL │ ├── right_hand_thumb_1_link.STL │ ├── right_hand_thumb_2_link.STL │ ├── right_hip_pitch_link.STL │ ├── right_hip_roll_link.STL │ ├── right_hip_yaw_link.STL │ ├── right_knee_link.STL │ ├── right_rubber_hand.STL │ ├── right_shoulder_pitch_link.STL │ ├── right_shoulder_roll_link.STL │ ├── right_shoulder_yaw_link.STL │ ├── right_wrist_pitch_link.STL │ ├── right_wrist_roll_link.STL │ ├── right_wrist_roll_rubber_hand.STL │ ├── right_wrist_yaw_link.STL │ ├── torso_constraint_L_link.STL │ ├── torso_constraint_L_rod_link.STL │ ├── torso_constraint_R_link.STL │ ├── torso_constraint_R_rod_link.STL │ ├── torso_link.STL │ ├── torso_link_23dof_rev_1_0.STL │ ├── torso_link_rev_1_0.STL │ ├── waist_constraint_L.STL │ ├── waist_constraint_R.STL │ ├── waist_roll_link.STL │ ├── waist_roll_link_rev_1_0.STL │ ├── waist_support_link.STL │ ├── waist_yaw_link.STL │ └── waist_yaw_link_rev_1_0.STL ├── config ├── controller.yaml └── tracking.yaml ├── requirements.txt └── src ├── common ├── command_helper.py ├── joint_mapper.py ├── math_utils.py ├── remote_controller.py └── utils.py ├── deploy.py ├── motion_select.py ├── observation.py ├── paths.py ├── policy.py └── sim2sim.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/README.md -------------------------------------------------------------------------------- /assets/ckpts/G1/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/ckpts/G1/policy.json -------------------------------------------------------------------------------- /assets/ckpts/G1/policy.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/ckpts/G1/policy.onnx -------------------------------------------------------------------------------- /assets/ckpts/G1/policy.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/ckpts/G1/policy.pt -------------------------------------------------------------------------------- /assets/data/drag_object.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/data/drag_object.npy -------------------------------------------------------------------------------- /assets/data/hug.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/data/hug.npy -------------------------------------------------------------------------------- /assets/data/move_object.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/data/move_object.npy -------------------------------------------------------------------------------- /assets/data/pick_ball.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/data/pick_ball.npy -------------------------------------------------------------------------------- /assets/data/walk.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/data/walk.npy -------------------------------------------------------------------------------- /assets/g1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/README.md -------------------------------------------------------------------------------- /assets/g1/g1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/g1.xml -------------------------------------------------------------------------------- /assets/g1/meshes/head_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/head_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_ankle_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_ankle_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_ankle_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_ankle_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_elbow_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_elbow_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_index_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_index_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_index_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_index_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_middle_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_middle_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_middle_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_middle_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_palm_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_palm_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_thumb_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_thumb_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_thumb_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_thumb_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hand_thumb_2_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hand_thumb_2_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hip_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hip_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hip_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hip_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_hip_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_hip_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_knee_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_knee_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_rubber_hand.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_rubber_hand.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_shoulder_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_shoulder_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_shoulder_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_shoulder_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_shoulder_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_shoulder_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_wrist_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_wrist_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_wrist_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_wrist_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_wrist_roll_rubber_hand.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_wrist_roll_rubber_hand.STL -------------------------------------------------------------------------------- /assets/g1/meshes/left_wrist_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/left_wrist_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/logo_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/logo_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/pelvis.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/pelvis.STL -------------------------------------------------------------------------------- /assets/g1/meshes/pelvis_contour_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/pelvis_contour_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_ankle_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_ankle_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_ankle_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_ankle_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_elbow_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_elbow_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_index_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_index_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_index_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_index_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_middle_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_middle_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_middle_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_middle_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_palm_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_palm_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_thumb_0_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_thumb_0_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_thumb_1_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_thumb_1_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hand_thumb_2_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hand_thumb_2_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hip_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hip_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hip_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hip_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_hip_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_hip_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_knee_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_knee_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_rubber_hand.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_rubber_hand.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_shoulder_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_shoulder_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_shoulder_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_shoulder_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_shoulder_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_shoulder_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_wrist_pitch_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_wrist_pitch_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_wrist_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_wrist_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_wrist_roll_rubber_hand.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_wrist_roll_rubber_hand.STL -------------------------------------------------------------------------------- /assets/g1/meshes/right_wrist_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/right_wrist_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_constraint_L_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_constraint_L_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_constraint_L_rod_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_constraint_L_rod_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_constraint_R_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_constraint_R_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_constraint_R_rod_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_constraint_R_rod_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_link_23dof_rev_1_0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_link_23dof_rev_1_0.STL -------------------------------------------------------------------------------- /assets/g1/meshes/torso_link_rev_1_0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/torso_link_rev_1_0.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_constraint_L.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_constraint_L.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_constraint_R.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_constraint_R.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_roll_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_roll_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_roll_link_rev_1_0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_roll_link_rev_1_0.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_support_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_support_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_yaw_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_yaw_link.STL -------------------------------------------------------------------------------- /assets/g1/meshes/waist_yaw_link_rev_1_0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/assets/g1/meshes/waist_yaw_link_rev_1_0.STL -------------------------------------------------------------------------------- /config/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/config/controller.yaml -------------------------------------------------------------------------------- /config/tracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/config/tracking.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/common/command_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/common/command_helper.py -------------------------------------------------------------------------------- /src/common/joint_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/common/joint_mapper.py -------------------------------------------------------------------------------- /src/common/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/common/math_utils.py -------------------------------------------------------------------------------- /src/common/remote_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/common/remote_controller.py -------------------------------------------------------------------------------- /src/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/common/utils.py -------------------------------------------------------------------------------- /src/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/deploy.py -------------------------------------------------------------------------------- /src/motion_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/motion_select.py -------------------------------------------------------------------------------- /src/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/observation.py -------------------------------------------------------------------------------- /src/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/paths.py -------------------------------------------------------------------------------- /src/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/policy.py -------------------------------------------------------------------------------- /src/sim2sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axellwppr/gentle-humanoid/HEAD/src/sim2sim.py --------------------------------------------------------------------------------