├── README.md ├── cvar ├── common │ ├── cvar_computation.py │ └── util.py ├── dqn │ ├── core │ │ ├── __init__.py │ │ ├── build_graph.py │ │ ├── models.py │ │ ├── plots.py │ │ ├── replay_buffer.py │ │ ├── simple.py │ │ └── static.py │ ├── ice_lake │ │ ├── README.md │ │ ├── __init__.py │ │ ├── icelake.png │ │ ├── icelake.py │ │ └── ple_env.py │ └── scripts │ │ ├── README.md │ │ ├── enjoy_atari.py │ │ ├── enjoy_ice.py │ │ ├── enjoy_pong.py │ │ ├── enjoy_simple.py │ │ ├── test_atari.py │ │ ├── train_atari.py │ │ ├── train_ice.py │ │ ├── train_pong.py │ │ └── train_simple.py └── gridworld │ ├── README.md │ ├── algorithms │ ├── q_learning.py │ └── value_iteration.py │ ├── cliffwalker.py │ ├── core │ ├── __init__.py │ ├── constants.py │ ├── cvar_computation.py │ ├── models.py │ ├── policies.py │ └── runs.py │ ├── exp_model.py │ ├── interactive.png │ ├── plots │ ├── __init__.py │ ├── grid.py │ ├── info_plots.py │ ├── other.py │ ├── thesis_plots.py │ └── vi_compare_plots.py │ ├── run_q.py │ └── run_vi.py └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/README.md -------------------------------------------------------------------------------- /cvar/common/cvar_computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/common/cvar_computation.py -------------------------------------------------------------------------------- /cvar/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/common/util.py -------------------------------------------------------------------------------- /cvar/dqn/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/__init__.py -------------------------------------------------------------------------------- /cvar/dqn/core/build_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/build_graph.py -------------------------------------------------------------------------------- /cvar/dqn/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/models.py -------------------------------------------------------------------------------- /cvar/dqn/core/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/plots.py -------------------------------------------------------------------------------- /cvar/dqn/core/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/replay_buffer.py -------------------------------------------------------------------------------- /cvar/dqn/core/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/simple.py -------------------------------------------------------------------------------- /cvar/dqn/core/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/core/static.py -------------------------------------------------------------------------------- /cvar/dqn/ice_lake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/ice_lake/README.md -------------------------------------------------------------------------------- /cvar/dqn/ice_lake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/ice_lake/__init__.py -------------------------------------------------------------------------------- /cvar/dqn/ice_lake/icelake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/ice_lake/icelake.png -------------------------------------------------------------------------------- /cvar/dqn/ice_lake/icelake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/ice_lake/icelake.py -------------------------------------------------------------------------------- /cvar/dqn/ice_lake/ple_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/ice_lake/ple_env.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/README.md -------------------------------------------------------------------------------- /cvar/dqn/scripts/enjoy_atari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/enjoy_atari.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/enjoy_ice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/enjoy_ice.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/enjoy_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/enjoy_pong.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/enjoy_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/enjoy_simple.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/test_atari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/test_atari.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/train_atari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/train_atari.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/train_ice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/train_ice.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/train_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/train_pong.py -------------------------------------------------------------------------------- /cvar/dqn/scripts/train_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/dqn/scripts/train_simple.py -------------------------------------------------------------------------------- /cvar/gridworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/README.md -------------------------------------------------------------------------------- /cvar/gridworld/algorithms/q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/algorithms/q_learning.py -------------------------------------------------------------------------------- /cvar/gridworld/algorithms/value_iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/algorithms/value_iteration.py -------------------------------------------------------------------------------- /cvar/gridworld/cliffwalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/cliffwalker.py -------------------------------------------------------------------------------- /cvar/gridworld/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cvar/gridworld/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/core/constants.py -------------------------------------------------------------------------------- /cvar/gridworld/core/cvar_computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/core/cvar_computation.py -------------------------------------------------------------------------------- /cvar/gridworld/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/core/models.py -------------------------------------------------------------------------------- /cvar/gridworld/core/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/core/policies.py -------------------------------------------------------------------------------- /cvar/gridworld/core/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/core/runs.py -------------------------------------------------------------------------------- /cvar/gridworld/exp_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/exp_model.py -------------------------------------------------------------------------------- /cvar/gridworld/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/interactive.png -------------------------------------------------------------------------------- /cvar/gridworld/plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/__init__.py -------------------------------------------------------------------------------- /cvar/gridworld/plots/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/grid.py -------------------------------------------------------------------------------- /cvar/gridworld/plots/info_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/info_plots.py -------------------------------------------------------------------------------- /cvar/gridworld/plots/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/other.py -------------------------------------------------------------------------------- /cvar/gridworld/plots/thesis_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/thesis_plots.py -------------------------------------------------------------------------------- /cvar/gridworld/plots/vi_compare_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/plots/vi_compare_plots.py -------------------------------------------------------------------------------- /cvar/gridworld/run_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/run_q.py -------------------------------------------------------------------------------- /cvar/gridworld/run_vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/cvar/gridworld/run_vi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silvicek/cvar-algorithms/HEAD/setup.py --------------------------------------------------------------------------------