gitextract_e3i9npyq/ ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── amass_char_info.py ├── bullet/ │ ├── __init__.py │ ├── bullet_client.py │ ├── bullet_render.py │ └── bullet_utils.py ├── data/ │ ├── character/ │ │ └── amass.urdf │ ├── motion/ │ │ ├── amass_hierarchy.bvh │ │ ├── cmu/ │ │ │ ├── expert0/ │ │ │ │ └── test.bvh │ │ │ ├── expert1/ │ │ │ │ └── test.bvh │ │ │ ├── expert2/ │ │ │ │ └── test.bvh │ │ │ ├── expert3/ │ │ │ │ └── test.bvh │ │ │ ├── expert4/ │ │ │ │ └── test.bvh │ │ │ ├── expert5/ │ │ │ │ └── test.bvh │ │ │ ├── expert6/ │ │ │ │ └── test.bvh │ │ │ ├── expert7/ │ │ │ │ └── test.bvh │ │ │ └── moe/ │ │ │ └── test.bvh │ │ └── test.bvh │ └── spec/ │ ├── spec_env_humanoid_imitation_expert0.yaml │ ├── spec_env_humanoid_imitation_expert1.yaml │ ├── spec_env_humanoid_imitation_expert2.yaml │ ├── spec_env_humanoid_imitation_expert3.yaml │ ├── spec_env_humanoid_imitation_expert4.yaml │ ├── spec_env_humanoid_imitation_expert5.yaml │ ├── spec_env_humanoid_imitation_expert6.yaml │ ├── spec_env_humanoid_imitation_expert7.yaml │ ├── spec_env_humanoid_imitation_moe.yaml │ └── test_env_humanoid_imitation.yaml ├── env_humanoid_base.py ├── env_humanoid_imitation.py ├── env_humanoid_tracking.py ├── env_renderer.py ├── render_module.py ├── rllib_driver.py ├── rllib_env_imitation.py ├── rllib_model_custom_torch.py ├── sim_agent.py └── sim_obstacle.py