├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── docs └── STLGym.png ├── examples ├── avoid_lava.yaml ├── bipedal_walker.yaml ├── cartpole.yaml ├── pendulum_keep_up.yaml └── pendulum_stabilize.yaml ├── setup.py └── stlgym ├── __init__.py └── stlgym.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/README.md -------------------------------------------------------------------------------- /docs/STLGym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/docs/STLGym.png -------------------------------------------------------------------------------- /examples/avoid_lava.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/examples/avoid_lava.yaml -------------------------------------------------------------------------------- /examples/bipedal_walker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/examples/bipedal_walker.yaml -------------------------------------------------------------------------------- /examples/cartpole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/examples/cartpole.yaml -------------------------------------------------------------------------------- /examples/pendulum_keep_up.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/examples/pendulum_keep_up.yaml -------------------------------------------------------------------------------- /examples/pendulum_stabilize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/examples/pendulum_stabilize.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/setup.py -------------------------------------------------------------------------------- /stlgym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/stlgym/__init__.py -------------------------------------------------------------------------------- /stlgym/stlgym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphamilton/stl-gym/HEAD/stlgym/stlgym.py --------------------------------------------------------------------------------