Skip to content

lywa1998/q-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

q-learning

随机过程作业

文件

.
├── agents
│   ├── __init__.py
│   ├── Q_Leaning.py # Q-Learning智能体
│   └── Sarsa.py # Sarsa智能体
├── LICENSE
├── main.py # 主函数
├── README.md
├── save
│   ├── model-qlearning.npy # Q-Learning训练结果
│   └── model-sarsa.npy # Sarsa训练结果
└── visual.py

运行

# 训练
python --agent [qlearning | sarsa] --train

# 验证
python --agent [qlearning | sarsa]

TODO

  • Train代码
  • Test代码

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages