add Qlearning

This commit is contained in:
JohnJim0816
2021-03-11 19:26:32 +08:00
parent afd4f8c20d
commit 47390be0cf
11 changed files with 254 additions and 0 deletions

22
codes/QLearning/utils.py Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python
# coding=utf-8
'''
Author: John
Email: johnjim0816@gmail.com
Date: 2020-11-23 13:44:52
LastEditor: John
LastEditTime: 2021-03-11 19:18:34
Discription:
Environment:
'''
import os
import numpy as np
def save_results(rewards,tag='train',result_path='./result'):
'''保存reward等结果
'''
if not os.path.exists(result_path): # 检测是否存在文件夹
os.mkdir(result_path)
np.save(result_path+'rewards_'+tag+'.npy', rewards)
print('results saved!')