├── .gitignore ├── Colab Starter For RL.ipynb ├── DQN ├── DQN_torch.ipynb └── README.md ├── LICENSE ├── Policy Gradients and Actor Critic ├── ActorCritic_torch.ipynb ├── PolicyGradient_torch.ipynb ├── README.md └── Synchronous_A2C_torch.ipynb ├── README.md ├── environment.yml ├── my_path_in_RL.md └── suggested_path_in_RL.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Colab Starter For RL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/Colab Starter For RL.ipynb -------------------------------------------------------------------------------- /DQN/DQN_torch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/DQN/DQN_torch.ipynb -------------------------------------------------------------------------------- /DQN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/DQN/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /Policy Gradients and Actor Critic/ActorCritic_torch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/Policy Gradients and Actor Critic/ActorCritic_torch.ipynb -------------------------------------------------------------------------------- /Policy Gradients and Actor Critic/PolicyGradient_torch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/Policy Gradients and Actor Critic/PolicyGradient_torch.ipynb -------------------------------------------------------------------------------- /Policy Gradients and Actor Critic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/Policy Gradients and Actor Critic/README.md -------------------------------------------------------------------------------- /Policy Gradients and Actor Critic/Synchronous_A2C_torch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/Policy Gradients and Actor Critic/Synchronous_A2C_torch.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/environment.yml -------------------------------------------------------------------------------- /my_path_in_RL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/my_path_in_RL.md -------------------------------------------------------------------------------- /suggested_path_in_RL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinalmehta/Reinforcement-Learning-Notebooks/HEAD/suggested_path_in_RL.md --------------------------------------------------------------------------------