Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 2, 2019 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/03afd4e0bb97067c4f1adda9f9f7735a to your computer and use it in GitHub Desktop.
Save ryantm/03afd4e0bb97067c4f1adda9f9f7735a to your computer and use it in GitHub Desktop.
/nix/store/6cskrgr6136ynpymzgcwfm3zcjcyfld9-python3.7-gym-0.10.9
├── lib
│   └── python3.7
│   └── site-packages
│   ├── gym
│   │   ├── core.py
│   │   ├── envs
│   │   │   ├── algorithmic
│   │   │   │   ├── algorithmic_env.py
│   │   │   │   ├── copy_.py
│   │   │   │   ├── duplicated_input.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── algorithmic_env.cpython-37.pyc
│   │   │   │   │   ├── copy_.cpython-37.pyc
│   │   │   │   │   ├── duplicated_input.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── repeat_copy.cpython-37.pyc
│   │   │   │   │   ├── reverse.cpython-37.pyc
│   │   │   │   │   └── reversed_addition.cpython-37.pyc
│   │   │   │   ├── repeat_copy.py
│   │   │   │   ├── reversed_addition.py
│   │   │   │   ├── reverse.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_algorithmic.cpython-37.pyc
│   │   │   │   └── test_algorithmic.py
│   │   │   ├── atari
│   │   │   │   ├── atari_env.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── atari_env.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── box2d
│   │   │   │   ├── bipedal_walker.py
│   │   │   │   ├── car_dynamics.py
│   │   │   │   ├── car_racing.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lunar_lander.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── bipedal_walker.cpython-37.pyc
│   │   │   │   │   ├── car_dynamics.cpython-37.pyc
│   │   │   │   │   ├── car_racing.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── lunar_lander.cpython-37.pyc
│   │   │   │   │   └── test_lunar_lander.cpython-37.pyc
│   │   │   │   └── test_lunar_lander.py
│   │   │   ├── classic_control
│   │   │   │   ├── acrobot.py
│   │   │   │   ├── assets
│   │   │   │   │   └── clockwise.png
│   │   │   │   ├── cartpole.py
│   │   │   │   ├── continuous_mountain_car.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mountain_car.py
│   │   │   │   ├── pendulum.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── acrobot.cpython-37.pyc
│   │   │   │   │   ├── cartpole.cpython-37.pyc
│   │   │   │   │   ├── continuous_mountain_car.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── mountain_car.cpython-37.pyc
│   │   │   │   │   ├── pendulum.cpython-37.pyc
│   │   │   │   │   └── rendering.cpython-37.pyc
│   │   │   │   └── rendering.py
│   │   │   ├── __init__.py
│   │   │   ├── mujoco
│   │   │   │   ├── ant.py
│   │   │   │   ├── assets
│   │   │   │   │   ├── ant.xml
│   │   │   │   │   ├── half_cheetah.xml
│   │   │   │   │   ├── hopper.xml
│   │   │   │   │   ├── humanoidstandup.xml
│   │   │   │   │   ├── humanoid.xml
│   │   │   │   │   ├── inverted_double_pendulum.xml
│   │   │   │   │   ├── inverted_pendulum.xml
│   │   │   │   │   ├── point.xml
│   │   │   │   │   ├── pusher.xml
│   │   │   │   │   ├── reacher.xml
│   │   │   │   │   ├── striker.xml
│   │   │   │   │   ├── swimmer.xml
│   │   │   │   │   ├── thrower.xml
│   │   │   │   │   └── walker2d.xml
│   │   │   │   ├── half_cheetah.py
│   │   │   │   ├── hopper.py
│   │   │   │   ├── humanoid.py
│   │   │   │   ├── humanoidstandup.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── inverted_double_pendulum.py
│   │   │   │   ├── inverted_pendulum.py
│   │   │   │   ├── mujoco_env.py
│   │   │   │   ├── pusher.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── ant.cpython-37.pyc
│   │   │   │   │   ├── half_cheetah.cpython-37.pyc
│   │   │   │   │   ├── hopper.cpython-37.pyc
│   │   │   │   │   ├── humanoid.cpython-37.pyc
│   │   │   │   │   ├── humanoidstandup.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── inverted_double_pendulum.cpython-37.pyc
│   │   │   │   │   ├── inverted_pendulum.cpython-37.pyc
│   │   │   │   │   ├── mujoco_env.cpython-37.pyc
│   │   │   │   │   ├── pusher.cpython-37.pyc
│   │   │   │   │   ├── reacher.cpython-37.pyc
│   │   │   │   │   ├── striker.cpython-37.pyc
│   │   │   │   │   ├── swimmer.cpython-37.pyc
│   │   │   │   │   ├── thrower.cpython-37.pyc
│   │   │   │   │   └── walker2d.cpython-37.pyc
│   │   │   │   ├── reacher.py
│   │   │   │   ├── striker.py
│   │   │   │   ├── swimmer.py
│   │   │   │   ├── thrower.py
│   │   │   │   └── walker2d.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── registration.cpython-37.pyc
│   │   │   ├── registration.py
│   │   │   ├── robotics
│   │   │   │   ├── assets
│   │   │   │   │   ├── fetch
│   │   │   │   │   │   ├── pick_and_place.xml
│   │   │   │   │   │   ├── push.xml
│   │   │   │   │   │   ├── reach.xml
│   │   │   │   │   │   ├── robot.xml
│   │   │   │   │   │   ├── shared.xml
│   │   │   │   │   │   └── slide.xml
│   │   │   │   │   ├── hand
│   │   │   │   │   │   ├── manipulate_block.xml
│   │   │   │   │   │   ├── manipulate_egg.xml
│   │   │   │   │   │   ├── manipulate_pen.xml
│   │   │   │   │   │   ├── reach.xml
│   │   │   │   │   │   ├── robot.xml
│   │   │   │   │   │   ├── shared_asset.xml
│   │   │   │   │   │   └── shared.xml
│   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   ├── stls
│   │   │   │   │   │   ├── fetch
│   │   │   │   │   │   │   ├── base_link_collision.stl
│   │   │   │   │   │   │   ├── bellows_link_collision.stl
│   │   │   │   │   │   │   ├── elbow_flex_link_collision.stl
│   │   │   │   │   │   │   ├── estop_link.stl
│   │   │   │   │   │   │   ├── forearm_roll_link_collision.stl
│   │   │   │   │   │   │   ├── gripper_link.stl
│   │   │   │   │   │   │   ├── head_pan_link_collision.stl
│   │   │   │   │   │   │   ├── head_tilt_link_collision.stl
│   │   │   │   │   │   │   ├── laser_link.stl
│   │   │   │   │   │   │   ├── l_wheel_link_collision.stl
│   │   │   │   │   │   │   ├── r_wheel_link_collision.stl
│   │   │   │   │   │   │   ├── shoulder_lift_link_collision.stl
│   │   │   │   │   │   │   ├── shoulder_pan_link_collision.stl
│   │   │   │   │   │   │   ├── torso_fixed_link.stl
│   │   │   │   │   │   │   ├── torso_lift_link_collision.stl
│   │   │   │   │   │   │   ├── upperarm_roll_link_collision.stl
│   │   │   │   │   │   │   ├── wrist_flex_link_collision.stl
│   │   │   │   │   │   │   └── wrist_roll_link_collision.stl
│   │   │   │   │   │   └── hand
│   │   │   │   │   │   ├── F1.stl
│   │   │   │   │   │   ├── F2.stl
│   │   │   │   │   │   ├── F3.stl
│   │   │   │   │   │   ├── forearm_electric_cvx.stl
│   │   │   │   │   │   ├── forearm_electric.stl
│   │   │   │   │   │   ├── knuckle.stl
│   │   │   │   │   │   ├── lfmetacarpal.stl
│   │   │   │   │   │   ├── palm.stl
│   │   │   │   │   │   ├── TH1_z.stl
│   │   │   │   │   │   ├── TH2_z.stl
│   │   │   │   │   │   ├── TH3_z.stl
│   │   │   │   │   │   └── wrist.stl
│   │   │   │   │   └── textures
│   │   │   │   │   ├── block_hidden.png
│   │   │   │   │   └── block.png
│   │   │   │   ├── fetch
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── pick_and_place.py
│   │   │   │   │   ├── push.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── pick_and_place.cpython-37.pyc
│   │   │   │   │   │   ├── push.cpython-37.pyc
│   │   │   │   │   │   ├── reach.cpython-37.pyc
│   │   │   │   │   │   └── slide.cpython-37.pyc
│   │   │   │   │   ├── reach.py
│   │   │   │   │   └── slide.py
│   │   │   │   ├── fetch_env.py
│   │   │   │   ├── hand
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── manipulate.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── manipulate.cpython-37.pyc
│   │   │   │   │   │   └── reach.cpython-37.pyc
│   │   │   │   │   └── reach.py
│   │   │   │   ├── hand_env.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── fetch_env.cpython-37.pyc
│   │   │   │   │   ├── hand_env.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── robot_env.cpython-37.pyc
│   │   │   │   │   ├── rotations.cpython-37.pyc
│   │   │   │   │   └── utils.cpython-37.pyc
│   │   │   │   ├── robot_env.py
│   │   │   │   ├── rotations.py
│   │   │   │   └── utils.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── spec_list.cpython-37.pyc
│   │   │   │   │   ├── test_determinism.cpython-37.pyc
│   │   │   │   │   ├── test_envs.cpython-37.pyc
│   │   │   │   │   ├── test_envs_semantics.cpython-37.pyc
│   │   │   │   │   └── test_registration.cpython-37.pyc
│   │   │   │   ├── spec_list.py
│   │   │   │   ├── test_determinism.py
│   │   │   │   ├── test_envs.py
│   │   │   │   ├── test_envs_semantics.py
│   │   │   │   └── test_registration.py
│   │   │   ├── toy_text
│   │   │   │   ├── blackjack.py
│   │   │   │   ├── cliffwalking.py
│   │   │   │   ├── discrete.py
│   │   │   │   ├── frozen_lake.py
│   │   │   │   ├── guessing_game.py
│   │   │   │   ├── hotter_colder.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── kellycoinflip.py
│   │   │   │   ├── nchain.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── blackjack.cpython-37.pyc
│   │   │   │   │   ├── cliffwalking.cpython-37.pyc
│   │   │   │   │   ├── discrete.cpython-37.pyc
│   │   │   │   │   ├── frozen_lake.cpython-37.pyc
│   │   │   │   │   ├── guessing_game.cpython-37.pyc
│   │   │   │   │   ├── hotter_colder.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── kellycoinflip.cpython-37.pyc
│   │   │   │   │   ├── nchain.cpython-37.pyc
│   │   │   │   │   ├── roulette.cpython-37.pyc
│   │   │   │   │   └── taxi.cpython-37.pyc
│   │   │   │   ├── roulette.py
│   │   │   │   └── taxi.py
│   │   │   └── unittest
│   │   │   ├── cube_crash.py
│   │   │   ├── __init__.py
│   │   │   ├── memorize_digits.py
│   │   │   └── __pycache__
│   │   │   ├── cube_crash.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── memorize_digits.cpython-37.pyc
│   │   ├── error.py
│   │   ├── __init__.py
│   │   ├── logger.py
│   │   ├── __pycache__
│   │   │   ├── core.cpython-37.pyc
│   │   │   ├── error.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── logger.cpython-37.pyc
│   │   │   └── version.cpython-37.pyc
│   │   ├── spaces
│   │   │   ├── box.py
│   │   │   ├── dict_space.py
│   │   │   ├── discrete.py
│   │   │   ├── __init__.py
│   │   │   ├── multi_binary.py
│   │   │   ├── multi_discrete.py
│   │   │   ├── prng.py
│   │   │   ├── __pycache__
│   │   │   │   ├── box.cpython-37.pyc
│   │   │   │   ├── dict_space.cpython-37.pyc
│   │   │   │   ├── discrete.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── multi_binary.cpython-37.pyc
│   │   │   │   ├── multi_discrete.cpython-37.pyc
│   │   │   │   ├── prng.cpython-37.pyc
│   │   │   │   └── tuple_space.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_spaces.cpython-37.pyc
│   │   │   │   └── test_spaces.py
│   │   │   └── tuple_space.py
│   │   ├── utils
│   │   │   ├── atomic_write.py
│   │   │   ├── closer.py
│   │   │   ├── colorize.py
│   │   │   ├── ezpickle.py
│   │   │   ├── __init__.py
│   │   │   ├── json_utils.py
│   │   │   ├── play.py
│   │   │   ├── __pycache__
│   │   │   │   ├── atomic_write.cpython-37.pyc
│   │   │   │   ├── closer.cpython-37.pyc
│   │   │   │   ├── colorize.cpython-37.pyc
│   │   │   │   ├── ezpickle.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json_utils.cpython-37.pyc
│   │   │   │   ├── play.cpython-37.pyc
│   │   │   │   ├── reraise.cpython-37.pyc
│   │   │   │   ├── reraise_impl_py3.cpython-37.pyc
│   │   │   │   └── seeding.cpython-37.pyc
│   │   │   ├── reraise_impl_py2.py
│   │   │   ├── reraise_impl_py3.py
│   │   │   ├── reraise.py
│   │   │   └── seeding.py
│   │   ├── version.py
│   │   └── wrappers
│   │   ├── dict.py
│   │   ├── __init__.py
│   │   ├── monitoring
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── stats_recorder.cpython-37.pyc
│   │   │   │   └── video_recorder.cpython-37.pyc
│   │   │   ├── stats_recorder.py
│   │   │   ├── tests
│   │   │   │   ├── helpers.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── helpers.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_video_recorder.cpython-37.pyc
│   │   │   │   └── test_video_recorder.py
│   │   │   └── video_recorder.py
│   │   ├── monitor.py
│   │   ├── __pycache__
│   │   │   ├── dict.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── monitor.cpython-37.pyc
│   │   │   └── time_limit.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   └── time_limit.py
│   └── gym-0.10.9.dist-info
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
56 directories, 290 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment