.codecov.yml
.codespell.skip
.dockerignore
.gitattributes
.gitignore
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
pyproject.toml
readthedocs.yml
setup.cfg
setup.py
.circleci/config.yml
.github/workflows/publish-to-pypi.yml
ci/Xdummy-entrypoint.py
ci/build_and_activate_venv.ps1
ci/build_and_activate_venv.sh
ci/code_checks.sh
ci/xorg.conf
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
docs/algorithms/airl.rst
docs/algorithms/bc.rst
docs/algorithms/dagger.rst
docs/algorithms/gail.rst
docs/guide/gettingstarted.rst
docs/guide/install.rst
docs/guide/variable_horizon.rst
docs/modules/imitation.algorithms.adversarial.rst
docs/modules/imitation.algorithms.rst
docs/modules/imitation.data.rst
docs/modules/imitation.envs.examples.rst
docs/modules/imitation.envs.rst
docs/modules/imitation.policies.rst
docs/modules/imitation.rewards.rst
docs/modules/imitation.rst
docs/modules/imitation.scripts.rst
docs/modules/imitation.util.rst
examples/1_train_bc.ipynb
examples/2_train_dagger.ipynb
examples/3_train_gail.ipynb
examples/4_train_airl.ipynb
examples/5_train_preference_comparisons.ipynb
examples/6_train_mce.ipynb
examples/7_train_density.ipynb
examples/quickstart.py
examples/quickstart.sh
experiments/.gitignore
experiments/README.md
experiments/bc_benchmark.sh
experiments/benchmark_and_table.sh
experiments/common.sh
experiments/convert_traj.py
experiments/dagger_benchmark.sh
experiments/download_models.sh
experiments/imit_benchmark.sh
experiments/imit_benchmark_config.csv
experiments/imit_table_cheetahs.csv
experiments/imit_table_mvp_seals_config.csv
experiments/rollouts_from_policies.sh
experiments/rollouts_from_policies_config.csv
experiments/train_experts.sh
experiments/transfer_learn_benchmark.sh
runners/build_push_image.sh
runners/launch_docker-dev.sh
src/imitation/__init__.py
src/imitation/py.typed
src/imitation.egg-info/PKG-INFO
src/imitation.egg-info/SOURCES.txt
src/imitation.egg-info/dependency_links.txt
src/imitation.egg-info/entry_points.txt
src/imitation.egg-info/requires.txt
src/imitation.egg-info/top_level.txt
src/imitation/algorithms/__init__.py
src/imitation/algorithms/base.py
src/imitation/algorithms/bc.py
src/imitation/algorithms/dagger.py
src/imitation/algorithms/density.py
src/imitation/algorithms/mce_irl.py
src/imitation/algorithms/preference_comparisons.py
src/imitation/algorithms/adversarial/__init__.py
src/imitation/algorithms/adversarial/airl.py
src/imitation/algorithms/adversarial/common.py
src/imitation/algorithms/adversarial/gail.py
src/imitation/data/__init__.py
src/imitation/data/buffer.py
src/imitation/data/rollout.py
src/imitation/data/types.py
src/imitation/data/wrappers.py
src/imitation/envs/__init__.py
src/imitation/envs/resettable_env.py
src/imitation/envs/examples/__init__.py
src/imitation/envs/examples/model_envs.py
src/imitation/policies/__init__.py
src/imitation/policies/base.py
src/imitation/policies/exploration_wrapper.py
src/imitation/policies/serialize.py
src/imitation/rewards/__init__.py
src/imitation/rewards/reward_function.py
src/imitation/rewards/reward_nets.py
src/imitation/rewards/reward_wrapper.py
src/imitation/rewards/serialize.py
src/imitation/scripts/__init__.py
src/imitation/scripts/analyze.py
src/imitation/scripts/convert_trajs.py
src/imitation/scripts/eval_policy.py
src/imitation/scripts/parallel.py
src/imitation/scripts/train_adversarial.py
src/imitation/scripts/train_imitation.py
src/imitation/scripts/train_preference_comparisons.py
src/imitation/scripts/train_rl.py
src/imitation/scripts/common/__init__.py
src/imitation/scripts/common/common.py
src/imitation/scripts/common/demonstrations.py
src/imitation/scripts/common/reward.py
src/imitation/scripts/common/rl.py
src/imitation/scripts/common/train.py
src/imitation/scripts/common/wb.py
src/imitation/scripts/config/__init__.py
src/imitation/scripts/config/analyze.py
src/imitation/scripts/config/eval_policy.py
src/imitation/scripts/config/parallel.py
src/imitation/scripts/config/train_adversarial.py
src/imitation/scripts/config/train_imitation.py
src/imitation/scripts/config/train_preference_comparisons.py
src/imitation/scripts/config/train_rl.py
src/imitation/testing/__init__.py
src/imitation/testing/envs.py
src/imitation/testing/reward_improvement.py
src/imitation/testing/reward_nets.py
src/imitation/util/__init__.py
src/imitation/util/logger.py
src/imitation/util/networks.py
src/imitation/util/registry.py
src/imitation/util/sacred.py
src/imitation/util/util.py
src/imitation/util/video_wrapper.py
tests/conftest.py
tests/generate_test_data.sh
tests/test_envs.py
tests/test_examples.py
tests/test_experiments.py
tests/algorithms/test_adversarial.py
tests/algorithms/test_base.py
tests/algorithms/test_bc.py
tests/algorithms/test_dagger.py
tests/algorithms/test_density_baselines.py
tests/algorithms/test_mce_irl.py
tests/algorithms/test_preference_comparisons.py
tests/data/test_buffer.py
tests/data/test_rollout.py
tests/data/test_types.py
tests/data/test_wrappers.py
tests/policies/test_exploration_wrapper.py
tests/policies/test_policies.py
tests/rewards/test_reward_fn.py
tests/rewards/test_reward_nets.py
tests/rewards/test_reward_wrapper.py
tests/scripts/test_scripts.py
tests/scripts/common/test_rewards.py
tests/testdata/imit_benchmark_config.csv
tests/testdata/old_format_rollout.pkl
tests/testdata/rollouts_from_policies_config.csv
tests/testdata/expert_models/cartpole_0/policies/final/model.zip
tests/testdata/expert_models/cartpole_0/rollouts/final.pkl
tests/testdata/expert_models/pendulum_0/rollouts/final.pkl
tests/util/test_logger.py
tests/util/test_networks.py
tests/util/test_registry.py
tests/util/test_util.py
tests/util/test_wb_logger.py