注意事项:
- 代码运行时会关闭所有终端,所以不要在终端中运行程序(可以在PyCharm中运行),其他在运行的程序也要注意先关闭;
- 程序环境依赖在
environment.yaml
中; - 在
/CarND-test/src/train/train.py
中编写你的强化学习程序,注意在其中的150、179等行修改你的文件存储位置; - 按照
/CarND-test/README.md
中的提示编译程序,理解/CarND-test/src/main.cpp
的作用(可能需要作相应调整); - 不同电脑,tensorflow-gpu、cuda、cudnn、keras的版本配置可能不同,请自行安装;
- 测试仿真环境是否安装成功,可以运行
decision-making-CarND/term3_sim_linux/term3_sim.x86_64
和decision-making-CarND/CarND-test/src/test/path_planning
; - 程序是利用C++与Python通过socket互传信息的方式,需要先开启Python监听,否则直接运行path_planning会显示connect error错误;
- 样本程序所使用tensorflow、keras的版本、方式较老,如果配置有困难,可以自由选择网络搭建的方式(例如pytorch等),只要Python可以通过socket正常监听到数据即可。
环境配置步骤:
git clone https://github.com/DRL-CASIA/decision-making-CarND.git
(有文件更新,建议重新克隆)cd decision-making-CarND/term3_sim_linux
sudo chmod u+x term3_sim.x86_64
- 确保cmake >= 3.5,make >= 4.1,gcc/g++ >= 5.4(一般都已安装,未安装参考decision-making-CarND/CarND-test/README.md)
- 进入
decision-making-CarND/CarND-test
文件夹,运行install-ubuntu.sh安装依赖(bash install-ubuntu.sh
) - 保持在decision-making-CarND/CarND-test文件夹,进行编译:
mkdir build && cd build
cmake .. && make
此时运行./path_planning
显示connect error
为正常现象 - 安装anaconda3或miniconda3
- 修改environment.yaml中最后一行至你的conda安装位置,运行
conda env create -f environment.yaml
建立虚拟环境 - 编写
decision-making-CarND/CarND-test/src/train/train.py
文件并运行,注意事项如上