├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug.md
│ ├── proposal.md
│ └── question.md
├── PULL_REQUEST_TEMPLATE.md
└── stale.yml
├── .gitignore
├── CODE_OF_CONDUCT.rst
├── LICENSE
├── MANIFEST.in
├── README.md
├── d4rl-text.png
├── d4rl
├── __init__.py
├── carla
│ ├── __init__.py
│ ├── carla_env.py
│ ├── data_collection_agent_lane.py
│ ├── data_collection_town.py
│ └── town_agent.py
├── flow
│ ├── __init__.py
│ ├── bottleneck.py
│ ├── merge.py
│ └── traffic_light_grid.py
├── gym_bullet
│ ├── __init__.py
│ └── gym_envs.py
├── gym_minigrid
│ ├── __init__.py
│ ├── envs
│ │ ├── __init__.py
│ │ ├── empty.py
│ │ └── fourrooms.py
│ ├── fourroom_controller.py
│ ├── minigrid.py
│ ├── register.py
│ ├── rendering.py
│ ├── roomgrid.py
│ ├── window.py
│ └── wrappers.py
├── gym_mujoco
│ ├── __init__.py
│ └── gym_envs.py
├── hand_manipulation_suite
│ ├── Adroit
│ │ ├── .gitignore
│ │ ├── Adroit_hand.xml
│ │ ├── Adroit_hand_withOverlay.xml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── gallery
│ │ │ ├── news.JPG
│ │ │ └── projects.JPG
│ │ └── resources
│ │ │ ├── assets.xml
│ │ │ ├── chain.xml
│ │ │ ├── chain1.xml
│ │ │ ├── joint_position_actuation.xml
│ │ │ ├── meshes
│ │ │ ├── F1.stl
│ │ │ ├── F2.stl
│ │ │ ├── F3.stl
│ │ │ ├── TH1_z.stl
│ │ │ ├── TH2_z.stl
│ │ │ ├── TH3_z.stl
│ │ │ ├── arm_base.stl
│ │ │ ├── arm_trunk.stl
│ │ │ ├── arm_trunk_asmbly.stl
│ │ │ ├── distal_ellipsoid.stl
│ │ │ ├── elbow_flex.stl
│ │ │ ├── elbow_rotate_motor.stl
│ │ │ ├── elbow_rotate_muscle.stl
│ │ │ ├── forearm_Cy_PlateAsmbly(muscle_cone).stl
│ │ │ ├── forearm_Cy_PlateAsmbly.stl
│ │ │ ├── forearm_PlateAsmbly.stl
│ │ │ ├── forearm_electric.stl
│ │ │ ├── forearm_electric_cvx.stl
│ │ │ ├── forearm_muscle.stl
│ │ │ ├── forearm_simple.stl
│ │ │ ├── forearm_simple_cvx.stl
│ │ │ ├── forearm_weight.stl
│ │ │ ├── knuckle.stl
│ │ │ ├── lfmetacarpal.stl
│ │ │ ├── palm.stl
│ │ │ ├── upper_arm.stl
│ │ │ ├── upper_arm_asmbl_shoulder.stl
│ │ │ ├── upper_arm_ass.stl
│ │ │ └── wrist.stl
│ │ │ ├── tendon_torque_actuation.xml
│ │ │ └── textures
│ │ │ ├── darkwood.png
│ │ │ ├── dice.png
│ │ │ ├── foil.png
│ │ │ ├── marble.png
│ │ │ ├── silverRaw.png
│ │ │ ├── skin.png
│ │ │ ├── square.png
│ │ │ ├── wood.png
│ │ │ └── woodb.png
│ ├── __init__.py
│ ├── assets
│ │ ├── DAPG_Adroit.xml
│ │ ├── DAPG_assets.xml
│ │ ├── DAPG_door.xml
│ │ ├── DAPG_hammer.xml
│ │ ├── DAPG_pen.xml
│ │ ├── DAPG_relocate.xml
│ │ └── tasks.jpg
│ ├── door_v0.py
│ ├── hammer_v0.py
│ ├── pen_v0.py
│ └── relocate_v0.py
├── infos.py
├── kitchen
│ ├── __init__.py
│ ├── adept_envs
│ │ ├── .pylintrc
│ │ ├── .style.yapf
│ │ ├── __init__.py
│ │ ├── base_robot.py
│ │ ├── franka
│ │ │ ├── __init__.py
│ │ │ ├── assets
│ │ │ │ └── franka_kitchen_jntpos_act_ab.xml
│ │ │ ├── kitchen_multitask_v0.py
│ │ │ └── robot
│ │ │ │ ├── __init__.py
│ │ │ │ ├── franka_config.xml
│ │ │ │ └── franka_robot.py
│ │ ├── mujoco_env.py
│ │ ├── robot_env.py
│ │ ├── simulation
│ │ │ ├── __init__.py
│ │ │ ├── module.py
│ │ │ ├── renderer.py
│ │ │ └── sim_robot.py
│ │ └── utils
│ │ │ ├── __init__.py
│ │ │ ├── config.py
│ │ │ ├── configurable.py
│ │ │ ├── constants.py
│ │ │ ├── parse_demos.py
│ │ │ └── quatmath.py
│ ├── adept_models
│ │ ├── .gitignore
│ │ ├── CONTRIBUTING.public.md
│ │ ├── LICENSE
│ │ ├── README.public.md
│ │ ├── __init__.py
│ │ ├── kitchen
│ │ │ ├── assets
│ │ │ │ ├── backwall_asset.xml
│ │ │ │ ├── backwall_chain.xml
│ │ │ │ ├── counters_asset.xml
│ │ │ │ ├── counters_chain.xml
│ │ │ │ ├── hingecabinet_asset.xml
│ │ │ │ ├── hingecabinet_chain.xml
│ │ │ │ ├── kettle_asset.xml
│ │ │ │ ├── kettle_chain.xml
│ │ │ │ ├── microwave_asset.xml
│ │ │ │ ├── microwave_chain.xml
│ │ │ │ ├── oven_asset.xml
│ │ │ │ ├── oven_chain.xml
│ │ │ │ ├── slidecabinet_asset.xml
│ │ │ │ └── slidecabinet_chain.xml
│ │ │ ├── counters.xml
│ │ │ ├── hingecabinet.xml
│ │ │ ├── kettle.xml
│ │ │ ├── kitchen.xml
│ │ │ ├── meshes
│ │ │ │ ├── burnerplate.stl
│ │ │ │ ├── burnerplate_mesh.stl
│ │ │ │ ├── cabinetbase.stl
│ │ │ │ ├── cabinetdrawer.stl
│ │ │ │ ├── cabinethandle.stl
│ │ │ │ ├── countertop.stl
│ │ │ │ ├── faucet.stl
│ │ │ │ ├── handle2.stl
│ │ │ │ ├── hingecabinet.stl
│ │ │ │ ├── hingedoor.stl
│ │ │ │ ├── hingehandle.stl
│ │ │ │ ├── hood.stl
│ │ │ │ ├── kettle.stl
│ │ │ │ ├── kettlehandle.stl
│ │ │ │ ├── knob.stl
│ │ │ │ ├── lightswitch.stl
│ │ │ │ ├── lightswitchbase.stl
│ │ │ │ ├── micro.stl
│ │ │ │ ├── microbutton.stl
│ │ │ │ ├── microdoor.stl
│ │ │ │ ├── microefeet.stl
│ │ │ │ ├── microfeet.stl
│ │ │ │ ├── microhandle.stl
│ │ │ │ ├── microwindow.stl
│ │ │ │ ├── oven.stl
│ │ │ │ ├── ovenhandle.stl
│ │ │ │ ├── oventop.stl
│ │ │ │ ├── ovenwindow.stl
│ │ │ │ ├── slidecabinet.stl
│ │ │ │ ├── slidedoor.stl
│ │ │ │ ├── stoverim.stl
│ │ │ │ ├── tile.stl
│ │ │ │ └── wall.stl
│ │ │ ├── microwave.xml
│ │ │ ├── oven.xml
│ │ │ ├── slidecabinet.xml
│ │ │ └── textures
│ │ │ │ ├── marble1.png
│ │ │ │ ├── metal1.png
│ │ │ │ ├── tile1.png
│ │ │ │ └── wood1.png
│ │ └── scenes
│ │ │ ├── basic_scene.xml
│ │ │ └── textures
│ │ │ ├── white_marble_tile.png
│ │ │ └── white_marble_tile2.png
│ ├── kitchen_envs.py
│ └── third_party
│ │ └── franka
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ ├── actuator0.xml
│ │ ├── actuator1.xml
│ │ ├── assets.xml
│ │ ├── basic_scene.xml
│ │ ├── chain0.xml
│ │ ├── chain0_overlay.xml
│ │ ├── chain1.xml
│ │ └── teleop_actuator.xml
│ │ ├── bi-franka_panda.xml
│ │ ├── franka_panda.png
│ │ ├── franka_panda.xml
│ │ ├── franka_panda_teleop.xml
│ │ └── meshes
│ │ ├── collision
│ │ ├── finger.stl
│ │ ├── hand.stl
│ │ ├── link0.stl
│ │ ├── link1.stl
│ │ ├── link2.stl
│ │ ├── link3.stl
│ │ ├── link4.stl
│ │ ├── link5.stl
│ │ ├── link6.stl
│ │ └── link7.stl
│ │ └── visual
│ │ ├── finger.stl
│ │ ├── hand.stl
│ │ ├── link0.stl
│ │ ├── link1.stl
│ │ ├── link2.stl
│ │ ├── link3.stl
│ │ ├── link4.stl
│ │ ├── link5.stl
│ │ ├── link6.stl
│ │ └── link7.stl
├── locomotion
│ ├── __init__.py
│ ├── ant.py
│ ├── assets
│ │ ├── ant.xml
│ │ └── point.xml
│ ├── common.py
│ ├── generate_dataset.py
│ ├── goal_reaching_env.py
│ ├── maze_env.py
│ ├── mujoco_goal_env.py
│ ├── point.py
│ ├── swimmer.py
│ └── wrappers.py
├── offline_env.py
├── ope.py
├── pointmaze
│ ├── __init__.py
│ ├── dynamic_mjc.py
│ ├── gridcraft
│ │ ├── __init__.py
│ │ ├── grid_env.py
│ │ ├── grid_spec.py
│ │ ├── utils.py
│ │ └── wrappers.py
│ ├── maze_model.py
│ ├── q_iteration.py
│ └── waypoint_controller.py
├── pointmaze_bullet
│ ├── __init__.py
│ ├── bullet_maze.py
│ └── bullet_robot.py
└── utils
│ ├── __init__.py
│ ├── dataset_utils.py
│ ├── quatmath.py
│ ├── visualize_env.py
│ └── wrappers.py
├── scripts
├── check_antmaze_datasets.py
├── check_bullet.py
├── check_envs.py
├── check_mujoco_datasets.py
├── generation
│ ├── flow_idm.py
│ ├── generate_ant_maze_datasets.py
│ ├── generate_kitchen_datasets.py
│ ├── generate_maze2d_bullet_datasets.py
│ ├── generate_maze2d_datasets.py
│ ├── generate_minigrid_fourroom_data.py
│ ├── hand_dapg_combined.py
│ ├── hand_dapg_demos.py
│ ├── hand_dapg_jax.py
│ ├── hand_dapg_policies.py
│ ├── hand_dapg_random.py
│ ├── mujoco
│ │ ├── collect_data.py
│ │ ├── convert_buffer.py
│ │ ├── fix_qpos_qvel.py
│ │ └── stitch_dataset.py
│ ├── relabel_antmaze_rewards.py
│ └── relabel_maze2d_rewards.py
├── ope_rollout.py
├── reference_scores
│ ├── adroit_expert.py
│ ├── carla_lane_controller.py
│ ├── generate_ref_min_score.py
│ ├── generate_ref_min_score.sh
│ ├── maze2d_bullet_controller.py
│ ├── maze2d_controller.py
│ └── minigrid_controller.py
└── visualize_dataset.py
└── setup.py
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: Farama-Foundation
2 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.github/ISSUE_TEMPLATE/bug.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/proposal.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.github/ISSUE_TEMPLATE/proposal.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/question.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.github/ISSUE_TEMPLATE/question.md
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/stale.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.github/stale.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/.gitignore
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/CODE_OF_CONDUCT.rst
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/LICENSE
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/MANIFEST.in
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/README.md
--------------------------------------------------------------------------------
/d4rl-text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl-text.png
--------------------------------------------------------------------------------
/d4rl/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/__init__.py
--------------------------------------------------------------------------------
/d4rl/carla/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/carla/__init__.py
--------------------------------------------------------------------------------
/d4rl/carla/carla_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/carla/carla_env.py
--------------------------------------------------------------------------------
/d4rl/carla/data_collection_agent_lane.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/carla/data_collection_agent_lane.py
--------------------------------------------------------------------------------
/d4rl/carla/data_collection_town.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/carla/data_collection_town.py
--------------------------------------------------------------------------------
/d4rl/carla/town_agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/carla/town_agent.py
--------------------------------------------------------------------------------
/d4rl/flow/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/flow/__init__.py
--------------------------------------------------------------------------------
/d4rl/flow/bottleneck.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/flow/bottleneck.py
--------------------------------------------------------------------------------
/d4rl/flow/merge.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/flow/merge.py
--------------------------------------------------------------------------------
/d4rl/flow/traffic_light_grid.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/flow/traffic_light_grid.py
--------------------------------------------------------------------------------
/d4rl/gym_bullet/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_bullet/__init__.py
--------------------------------------------------------------------------------
/d4rl/gym_bullet/gym_envs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_bullet/gym_envs.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/__init__.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/envs/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/envs/__init__.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/envs/empty.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/envs/empty.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/envs/fourrooms.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/envs/fourrooms.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/fourroom_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/fourroom_controller.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/minigrid.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/minigrid.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/register.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/register.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/rendering.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/rendering.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/roomgrid.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/roomgrid.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/window.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/window.py
--------------------------------------------------------------------------------
/d4rl/gym_minigrid/wrappers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_minigrid/wrappers.py
--------------------------------------------------------------------------------
/d4rl/gym_mujoco/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_mujoco/__init__.py
--------------------------------------------------------------------------------
/d4rl/gym_mujoco/gym_envs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/gym_mujoco/gym_envs.py
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/.gitignore:
--------------------------------------------------------------------------------
1 | *.DS_Store
2 |
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/Adroit_hand.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/Adroit_hand.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/Adroit_hand_withOverlay.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/Adroit_hand_withOverlay.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/LICENSE
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/README.md
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/gallery/news.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/gallery/news.JPG
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/gallery/projects.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/gallery/projects.JPG
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/assets.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/assets.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/chain.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/chain1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/chain1.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/joint_position_actuation.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/joint_position_actuation.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F1.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F1.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F2.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F2.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F3.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/F3.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH1_z.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH1_z.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH2_z.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH2_z.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH3_z.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/TH3_z.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_base.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_base.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_trunk.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_trunk.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_trunk_asmbly.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/arm_trunk_asmbly.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/distal_ellipsoid.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/distal_ellipsoid.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_flex.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_flex.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_rotate_motor.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_rotate_motor.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_rotate_muscle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/elbow_rotate_muscle.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_Cy_PlateAsmbly(muscle_cone).stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_Cy_PlateAsmbly(muscle_cone).stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_Cy_PlateAsmbly.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_Cy_PlateAsmbly.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_PlateAsmbly.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_PlateAsmbly.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_electric.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_electric.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_electric_cvx.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_electric_cvx.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_muscle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_muscle.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_simple.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_simple.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_simple_cvx.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_simple_cvx.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_weight.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/forearm_weight.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/knuckle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/knuckle.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/lfmetacarpal.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/lfmetacarpal.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/palm.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/palm.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm_asmbl_shoulder.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm_asmbl_shoulder.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm_ass.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/upper_arm_ass.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/meshes/wrist.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/meshes/wrist.stl
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/tendon_torque_actuation.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/tendon_torque_actuation.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/darkwood.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/darkwood.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/dice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/dice.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/foil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/foil.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/marble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/marble.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/silverRaw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/silverRaw.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/skin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/skin.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/square.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/wood.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/wood.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/Adroit/resources/textures/woodb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/Adroit/resources/textures/woodb.png
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/__init__.py
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_Adroit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_Adroit.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_assets.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_assets.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_door.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_door.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_hammer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_hammer.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_pen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_pen.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/DAPG_relocate.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/DAPG_relocate.xml
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/assets/tasks.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/assets/tasks.jpg
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/door_v0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/door_v0.py
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/hammer_v0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/hammer_v0.py
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/pen_v0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/pen_v0.py
--------------------------------------------------------------------------------
/d4rl/hand_manipulation_suite/relocate_v0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/hand_manipulation_suite/relocate_v0.py
--------------------------------------------------------------------------------
/d4rl/infos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/infos.py
--------------------------------------------------------------------------------
/d4rl/kitchen/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/__init__.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/.pylintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/.pylintrc
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/.style.yapf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/.style.yapf
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/__init__.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/base_robot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/base_robot.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/franka/__init__.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/assets/franka_kitchen_jntpos_act_ab.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/franka/assets/franka_kitchen_jntpos_act_ab.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/kitchen_multitask_v0.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/franka/kitchen_multitask_v0.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/robot/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/robot/franka_config.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/franka/robot/franka_config.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/franka/robot/franka_robot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/franka/robot/franka_robot.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/mujoco_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/mujoco_env.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/robot_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/robot_env.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/simulation/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/simulation/module.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/simulation/module.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/simulation/renderer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/simulation/renderer.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/simulation/sim_robot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/simulation/sim_robot.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/utils/config.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/configurable.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/utils/configurable.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/constants.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/utils/constants.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/parse_demos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/utils/parse_demos.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_envs/utils/quatmath.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_envs/utils/quatmath.py
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/.gitignore
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/CONTRIBUTING.public.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/CONTRIBUTING.public.md
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/LICENSE
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/README.public.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/README.public.md
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/backwall_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/backwall_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/backwall_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/backwall_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/counters_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/counters_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/counters_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/counters_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/hingecabinet_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/hingecabinet_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/hingecabinet_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/hingecabinet_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/kettle_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/kettle_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/kettle_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/kettle_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/microwave_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/microwave_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/microwave_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/microwave_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/oven_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/oven_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/oven_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/oven_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/slidecabinet_asset.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/slidecabinet_asset.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/assets/slidecabinet_chain.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/assets/slidecabinet_chain.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/counters.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/counters.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/hingecabinet.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/hingecabinet.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/kettle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/kettle.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/kitchen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/kitchen.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/burnerplate.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/burnerplate.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/burnerplate_mesh.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/burnerplate_mesh.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/cabinetbase.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/cabinetbase.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/cabinetdrawer.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/cabinetdrawer.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/cabinethandle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/cabinethandle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/countertop.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/countertop.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/faucet.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/faucet.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/handle2.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/handle2.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/hingecabinet.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/hingecabinet.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/hingedoor.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/hingedoor.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/hingehandle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/hingehandle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/hood.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/hood.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/kettle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/kettle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/kettlehandle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/kettlehandle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/knob.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/knob.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/lightswitch.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/lightswitch.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/lightswitchbase.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/lightswitchbase.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/micro.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/micro.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microbutton.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microbutton.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microdoor.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microdoor.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microefeet.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microefeet.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microfeet.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microfeet.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microhandle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microhandle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/microwindow.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/microwindow.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/oven.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/oven.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/ovenhandle.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/ovenhandle.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/oventop.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/oventop.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/ovenwindow.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/ovenwindow.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/slidecabinet.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/slidecabinet.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/slidedoor.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/slidedoor.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/stoverim.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/stoverim.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/tile.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/tile.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/meshes/wall.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/meshes/wall.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/microwave.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/microwave.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/oven.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/oven.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/slidecabinet.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/slidecabinet.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/textures/marble1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/textures/marble1.png
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/textures/metal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/textures/metal1.png
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/textures/tile1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/textures/tile1.png
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/kitchen/textures/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/kitchen/textures/wood1.png
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/scenes/basic_scene.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/scenes/basic_scene.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/scenes/textures/white_marble_tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/scenes/textures/white_marble_tile.png
--------------------------------------------------------------------------------
/d4rl/kitchen/adept_models/scenes/textures/white_marble_tile2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/adept_models/scenes/textures/white_marble_tile2.png
--------------------------------------------------------------------------------
/d4rl/kitchen/kitchen_envs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/kitchen_envs.py
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/LICENSE
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/README.md
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/actuator0.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/actuator0.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/actuator1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/actuator1.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/assets.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/assets.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/basic_scene.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/basic_scene.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/chain0.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/chain0.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/chain0_overlay.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/chain0_overlay.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/chain1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/chain1.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/assets/teleop_actuator.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/assets/teleop_actuator.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/bi-franka_panda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/bi-franka_panda.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/franka_panda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/franka_panda.png
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/franka_panda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/franka_panda.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/franka_panda_teleop.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/franka_panda_teleop.xml
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/finger.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/finger.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/hand.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/hand.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link0.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link0.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link1.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link1.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link2.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link2.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link3.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link3.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link4.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link4.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link5.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link5.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link6.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link6.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/collision/link7.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/collision/link7.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/finger.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/finger.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/hand.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/hand.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link0.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link0.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link1.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link1.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link2.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link2.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link3.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link3.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link4.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link4.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link5.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link5.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link6.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link6.stl
--------------------------------------------------------------------------------
/d4rl/kitchen/third_party/franka/meshes/visual/link7.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/kitchen/third_party/franka/meshes/visual/link7.stl
--------------------------------------------------------------------------------
/d4rl/locomotion/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/__init__.py
--------------------------------------------------------------------------------
/d4rl/locomotion/ant.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/ant.py
--------------------------------------------------------------------------------
/d4rl/locomotion/assets/ant.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/assets/ant.xml
--------------------------------------------------------------------------------
/d4rl/locomotion/assets/point.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/assets/point.xml
--------------------------------------------------------------------------------
/d4rl/locomotion/common.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/common.py
--------------------------------------------------------------------------------
/d4rl/locomotion/generate_dataset.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/generate_dataset.py
--------------------------------------------------------------------------------
/d4rl/locomotion/goal_reaching_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/goal_reaching_env.py
--------------------------------------------------------------------------------
/d4rl/locomotion/maze_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/maze_env.py
--------------------------------------------------------------------------------
/d4rl/locomotion/mujoco_goal_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/mujoco_goal_env.py
--------------------------------------------------------------------------------
/d4rl/locomotion/point.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/point.py
--------------------------------------------------------------------------------
/d4rl/locomotion/swimmer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/swimmer.py
--------------------------------------------------------------------------------
/d4rl/locomotion/wrappers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/locomotion/wrappers.py
--------------------------------------------------------------------------------
/d4rl/offline_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/offline_env.py
--------------------------------------------------------------------------------
/d4rl/ope.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/ope.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/__init__.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/dynamic_mjc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/dynamic_mjc.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/gridcraft/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/pointmaze/gridcraft/grid_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/gridcraft/grid_env.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/gridcraft/grid_spec.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/gridcraft/grid_spec.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/gridcraft/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/gridcraft/utils.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/gridcraft/wrappers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/gridcraft/wrappers.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/maze_model.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/maze_model.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/q_iteration.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/q_iteration.py
--------------------------------------------------------------------------------
/d4rl/pointmaze/waypoint_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze/waypoint_controller.py
--------------------------------------------------------------------------------
/d4rl/pointmaze_bullet/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze_bullet/__init__.py
--------------------------------------------------------------------------------
/d4rl/pointmaze_bullet/bullet_maze.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze_bullet/bullet_maze.py
--------------------------------------------------------------------------------
/d4rl/pointmaze_bullet/bullet_robot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/pointmaze_bullet/bullet_robot.py
--------------------------------------------------------------------------------
/d4rl/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/d4rl/utils/dataset_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/utils/dataset_utils.py
--------------------------------------------------------------------------------
/d4rl/utils/quatmath.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/utils/quatmath.py
--------------------------------------------------------------------------------
/d4rl/utils/visualize_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/utils/visualize_env.py
--------------------------------------------------------------------------------
/d4rl/utils/wrappers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/d4rl/utils/wrappers.py
--------------------------------------------------------------------------------
/scripts/check_antmaze_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/check_antmaze_datasets.py
--------------------------------------------------------------------------------
/scripts/check_bullet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/check_bullet.py
--------------------------------------------------------------------------------
/scripts/check_envs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/check_envs.py
--------------------------------------------------------------------------------
/scripts/check_mujoco_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/check_mujoco_datasets.py
--------------------------------------------------------------------------------
/scripts/generation/flow_idm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/flow_idm.py
--------------------------------------------------------------------------------
/scripts/generation/generate_ant_maze_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/generate_ant_maze_datasets.py
--------------------------------------------------------------------------------
/scripts/generation/generate_kitchen_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/generate_kitchen_datasets.py
--------------------------------------------------------------------------------
/scripts/generation/generate_maze2d_bullet_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/generate_maze2d_bullet_datasets.py
--------------------------------------------------------------------------------
/scripts/generation/generate_maze2d_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/generate_maze2d_datasets.py
--------------------------------------------------------------------------------
/scripts/generation/generate_minigrid_fourroom_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/generate_minigrid_fourroom_data.py
--------------------------------------------------------------------------------
/scripts/generation/hand_dapg_combined.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/hand_dapg_combined.py
--------------------------------------------------------------------------------
/scripts/generation/hand_dapg_demos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/hand_dapg_demos.py
--------------------------------------------------------------------------------
/scripts/generation/hand_dapg_jax.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/hand_dapg_jax.py
--------------------------------------------------------------------------------
/scripts/generation/hand_dapg_policies.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/hand_dapg_policies.py
--------------------------------------------------------------------------------
/scripts/generation/hand_dapg_random.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/hand_dapg_random.py
--------------------------------------------------------------------------------
/scripts/generation/mujoco/collect_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/mujoco/collect_data.py
--------------------------------------------------------------------------------
/scripts/generation/mujoco/convert_buffer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/mujoco/convert_buffer.py
--------------------------------------------------------------------------------
/scripts/generation/mujoco/fix_qpos_qvel.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/mujoco/fix_qpos_qvel.py
--------------------------------------------------------------------------------
/scripts/generation/mujoco/stitch_dataset.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/mujoco/stitch_dataset.py
--------------------------------------------------------------------------------
/scripts/generation/relabel_antmaze_rewards.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/relabel_antmaze_rewards.py
--------------------------------------------------------------------------------
/scripts/generation/relabel_maze2d_rewards.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/generation/relabel_maze2d_rewards.py
--------------------------------------------------------------------------------
/scripts/ope_rollout.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/ope_rollout.py
--------------------------------------------------------------------------------
/scripts/reference_scores/adroit_expert.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/adroit_expert.py
--------------------------------------------------------------------------------
/scripts/reference_scores/carla_lane_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/carla_lane_controller.py
--------------------------------------------------------------------------------
/scripts/reference_scores/generate_ref_min_score.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/generate_ref_min_score.py
--------------------------------------------------------------------------------
/scripts/reference_scores/generate_ref_min_score.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/generate_ref_min_score.sh
--------------------------------------------------------------------------------
/scripts/reference_scores/maze2d_bullet_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/maze2d_bullet_controller.py
--------------------------------------------------------------------------------
/scripts/reference_scores/maze2d_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/maze2d_controller.py
--------------------------------------------------------------------------------
/scripts/reference_scores/minigrid_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/reference_scores/minigrid_controller.py
--------------------------------------------------------------------------------
/scripts/visualize_dataset.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/scripts/visualize_dataset.py
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Farama-Foundation/D4RL/HEAD/setup.py
--------------------------------------------------------------------------------