摘要: 简介这篇笔记主要是记录了百度PARL的学习过程中感觉还比较经典且入门的部分。 CartPole也相当于强化学习里面的Helloworld了吧。 环境描述 基本环境可以参考:https://gym.openai.com/envs/CartPole-v1/ 以及https://github.com/Pa 阅读全文
posted @ 2020-06-21 20:50 chengjue 阅读(1844) 评论(0) 推荐(0) 编辑
摘要: 报错: 可能是因为python版本、tensorflow版本不一样导致的,但如果仔仔细细检查完了没有任何错误 那么可能是因为pip安装的whl包的名字不满足系统条件, 关于什么是满足的可以进入python后输入: 修改成 就可以安装了 如果出现这个undefined symbol: PyUnicod 阅读全文
posted @ 2019-10-16 16:38 chengjue 阅读(26197) 评论(0) 推荐(1) 编辑
摘要: 1.安装所需库等等 2.下载opecv源码并切换分支到3.4.0 3.build 4.make&install l 5.想咋用就咋用 阅读全文
posted @ 2019-06-25 10:18 chengjue 阅读(1778) 评论(0) 推荐(0) 编辑
摘要: 1.首先,安装python等等 2.下载编译好的tensorflow https://github.com/lhelontra/tensorflow-on-arm/releases 选择版本tensorflow-1.13.1-cp35-none-linux_aarch64.whl 3.安装 4.可能 阅读全文
posted @ 2019-06-24 10:03 chengjue 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: 编译Hi3559A的内核出现错误:/linux-4.9.y_multi-core/arch/arm64/boot/uImage: No such file or directory 解决方法:将u-boot/tools/下的mkimage这个工具放置到你的usr/bin/ 目录里面, 再kernel 阅读全文
posted @ 2019-01-07 14:02 chengjue 阅读(1838) 评论(0) 推荐(0) 编辑
摘要: 转自https://blog.csdn.net/ikerpeng/article/details/41846259 opencv中图像的x,y 坐标以及 height, width,rows,cols 他们的关系经常混淆。 rows 其实就是行,一行一行也就是y 啦。height高度也就是y啦。 c 阅读全文
posted @ 2018-08-23 13:59 chengjue 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 挂代理 前 后 妥 阅读全文
posted @ 2018-07-13 11:07 chengjue 阅读(2648) 评论(1) 推荐(0) 编辑
摘要: 电脑环境为 :windows10 python3.5 cuda8.0 可以在官网查询各个版本的安装方式 这里使用pip的安装方式,通过以下命令: 在安装完成后在python中验证安装: 可能出现的问题: 在import torch时出现 from torch._C import * ImportEr 阅读全文
posted @ 2018-07-09 19:55 chengjue 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 因为最近的项目需求,需要我将Tensorflow模型、caffe模型和Mxnet模型转换成darknet模型,因此做个记录。 一些github上面的模型转换汇总:https://github.com/ysh329/deep-learning-model-convertor 从网上现有的一些模型转换方 阅读全文
posted @ 2018-07-09 14:04 chengjue 阅读(4118) 评论(1) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/u013842516/article/details/80604409 记录一下装了两天的caffe2 1、 Ubuntu默认为python2.7,首先需要把python环境切换到python3.5,依次执行如下命令:cd /usr/bin sudo 阅读全文
posted @ 2018-07-09 13:53 chengjue 阅读(3251) 评论(0) 推荐(0) 编辑