Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wielkadraka/lunar-landing-q-learing

AI playing Lunar Landing from python gymnasium library
https://github.com/wielkadraka/lunar-landing-q-learing

deep-neural-networks deep-q-learning lunar-lander python3

Last synced: about 2 months ago
JSON representation

AI playing Lunar Landing from python gymnasium library

Awesome Lists containing this project

README

        

# Lunar-Landing-Q-Learing

AI playing Lunar Landing from python gymnasium library

Deep Q-Learning (DQN) is an extension of Q-learning, a model-free reinforcement learning algorithm. It uses a deep neural network to approximate the Q-value function, which represents the expected future rewards for an agent's actions in a given state.

### Key Features:
- **Experience Replay:** Stores past experiences to break correlation between consecutive samples and stabilize training.
- **Target Network:** Uses a separate network to calculate target Q-values to improve stability.

### Applications:
- Game playing (e.g., Atari games)
- Robotic control
- Navigation tasks