Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricagj/train_your_own_game_AI
https://github.com/ricagj/train_your_own_game_AI
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ricagj/train_your_own_game_AI
- Owner: ricagj
- License: mit
- Created: 2021-03-25T10:52:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-13T12:04:03.000Z (over 3 years ago)
- Last Synced: 2024-04-08T22:19:42.108Z (7 months ago)
- Language: Jupyter Notebook
- Size: 318 KB
- Stars: 93
- Watchers: 2
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 训练属于自己的游戏AI v0.3.0
## 本次更新
只狼专用代码更新,通用代码未更新## 第 1 个实例 《只狼:影逝二度》
[v0.2.0 代码](https://github.com/ricagj/train_your_own_game_AI/tree/d0a553b53559ff7cf6decea9252a139013a70746/pysekiro_with_RL)
[v0.2.0 教程](https://github.com/ricagj/train_your_own_game_AI/blob/d0a553b53559ff7cf6decea9252a139013a70746/pysekiro_with_RL/sekiro.ipynb)## 第 2 个实例 《Muse Dash》
正在进行
## 项目结构
- game_player
- \__init__.py
- brain.py
- control_keyboard_keys.py
- detect_keyboard_keys.py
- grab_screen.py
- others.py
- run.py## 安装
#### 安装 Anaconda3
https://www.anaconda.com/
#### 创建虚拟环境和安装依赖
~~~shell
conda create -n game_AI python=3.8
conda activate game_AI
conda install pandas
conda install matplotlib
conda install pywin32
pip install opencv-python>=4.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install tensorflow>=2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
conda install -c conda-forge jupyterlab
~~~