update DoubleDQN

This commit is contained in:
JohnJim0816
2020-12-22 16:07:09 +08:00
parent 09f983120a
commit ac1d4b0a74
54 changed files with 264 additions and 146 deletions

33
codes/DoubleDQN/README.md Normal file
View File

@@ -0,0 +1,33 @@
## 思路
见[博客](https://blog.csdn.net/JohnJim0/article/details/111552545)
## 环境
python 3.7.9
pytorch 1.6.0
tensorboard 2.3.0
torchvision 0.7.0
## 使用
train:
```python
python main.py
```
eval:
```python
python main.py --train 0
```
可视化
```python
tensorboard --logdir logs
```