https://github.com/datarohit/ai-flappy-bird-game
This is a reinforcement learning based project where multiple agents are created and trained to learn the play the flappy bird game.
https://github.com/datarohit/ai-flappy-bird-game
neat-python pygame python reinfocement-learning
Last synced: 19 days ago
JSON representation
This is a reinforcement learning based project where multiple agents are created and trained to learn the play the flappy bird game.
- Host: GitHub
- URL: https://github.com/datarohit/ai-flappy-bird-game
- Owner: DataRohit
- Created: 2023-12-10T05:12:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-07T12:19:53.000Z (over 1 year ago)
- Last Synced: 2025-02-15T07:47:16.451Z (2 months ago)
- Topics: neat-python, pygame, python, reinfocement-learning
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **AI-Flappy-Bird-Game**
#### **1. Create Virtual Environment**
```bash
$ python -m venv venv
```#### **2. Activate Virtual Environment**
```bash
$ venv\Scripts\activate
```#### **3. Install Required Packages**
```bash
$ pip install -r requirements.txt
```### **4. Run the game.py file**
**Credits [Tech With Tim](https://www.youtube.com/@TechWithTim)**