Skip to content

shivamakhauri04/reinforcement-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reinforcement Learning Projects

License: MIT

A collection of reinforcement learning projects exploring different algorithms and environments. Each project demonstrates a unique RL paradigm -- from on-policy actor-critic methods and policy gradients to imitation learning -- applied to challenging control and game-playing tasks.


Project Index

Project Description Algorithm Environment
FIFA Actor-Critic PPO agent that learns to play Google Football Actor-Critic (PPO) Google Football
Lunar Lander Policy Gradient Policy gradient agent for LunarLander-v2 Actor-Critic OpenAI Gym LunarLander-v2
Imitation Learning Cars Self-driving via imitation learning using NVIDIA CNN Behavioral Cloning CARLA / Custom Dataset

Getting Started

Each project is self-contained under projects/<project-name>/. To get up and running:

# 1. Clone the repository
git clone https://github.com/shivamakhauri04/reinforcement-learning.git

# 2. Navigate to the project of interest
cd reinforcement-learning/projects/<project-name>

# 3. Install dependencies
pip install -r requirements.txt

Tip: It is recommended to create a virtual environment (venv or conda) before installing dependencies to avoid conflicts between projects.

Refer to each project's own README for detailed usage instructions, training commands, and evaluation steps.


Repository Structure

reinforcement-learning/
├── README.md
├── LICENSE
├── .gitignore
├── .gitattributes
└── projects/
    ├── fifa-actor-critic/
    ├── lunar-lander-policy-gradient/
    └── imitation-learning-cars/

Each project follows a standard layout:

projects/<project-name>/
├── README.md
├── requirements.txt
├── src/
├── checkpoints/
└── data/

License

This project is licensed under the MIT License -- see the LICENSE file for details.


Copyright (c) 2019 Shivam Akhauri

About

Reinforcement learning projects: Actor-Critic FIFA agent, Lunar Lander policy gradients, and imitation learning for autonomous driving

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors