上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 运行有关mnist数据集文件时出现了No module named 'input_data'的问题,这个问题主要是因为你的py文件中缺少input_data.py的文件,只要在你建的文件夹中加入一个input_data.py文件即可。文件代码如下: from __future__ import ab 阅读全文
posted @ 2020-09-25 10:45 Fiona_Y 阅读(2200) 评论(0) 推荐(0) 编辑
摘要: ModuleNotFoundError: No module named 'tensorflow.contrib' 解决方法: pip install tensorflow==1.14.0 # CPU版本 from gym.spaces import prng报错 找不到prng 解决方法: pip 阅读全文
posted @ 2020-09-25 10:43 Fiona_Y 阅读(517) 评论(0) 推荐(0) 编辑
摘要: yolov3-voc.cfg文件 [net] # Testing #测试模式 batch=1 subdivisions=1 # Training #训练模式 每次前向图片的数目=batch/subdivisions # batch=64 #关于batch与subdivision: #在训练输出中,训 阅读全文
posted @ 2020-09-24 17:27 Fiona_Y 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 1、安装python3.5,git,PyQt5 , lxml 打开prompt,输入指令安装库: pip install PyQt5 pip install lxml 2、下载labelimg labelImg下载地址:https://github.com/tzutalin/labelImg.git 阅读全文
posted @ 2020-09-23 11:22 Fiona_Y 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 清华镜像源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua. 阅读全文
posted @ 2020-09-10 16:19 Fiona_Y 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 1、win10运行gym的时候报错:NotImplementedError: abstract 问题原因:pyglet 版本太高 解决办法:将pyglet 版本降至1.2.4,执行以下命令pip install pyglet==1.2.4 然后就好了。 2、 阅读全文
posted @ 2020-07-25 15:58 Fiona_Y 阅读(712) 评论(0) 推荐(0) 编辑
摘要: Ubuntu16.04+window10两个系统都实现了 Ubuntu系统安装方法: 参考地址:http://ddrv.cn/a/320291 环境要求: 安装gym pip install gym 安装环境: git clone https://github.com/openai/multiage 阅读全文
posted @ 2020-07-25 14:45 Fiona_Y 阅读(3284) 评论(2) 推荐(0) 编辑
摘要: 第一次安装:pip install moviepy 结果出现错误: ERROR: Cannot uninstall 'imageio'. It is a distutils installed project and thus we cannot accurately determine which 阅读全文
posted @ 2020-06-02 16:46 Fiona_Y 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 用相似三角形计算物体或者目标到相机的距离我们将使用相似三角形来计算相机到一个已知的物体或者目标的距离。 相似三角形就是这么一回事:假设我们有一个宽度为 W 的目标或者物体。然后我们将这个目标放在距离我们的相机为 D 的位置。我们用相机对物体进行拍照并且测量物体的像素宽度 P 。这样我们就得出了相机焦 阅读全文
posted @ 2020-04-29 11:18 Fiona_Y 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: from tensorboard.backend.event_processing import event_accumulator #加载日志数据 ea=event_accumulator.EventAccumulator(r'G:\proj_drl\openai-2020-03-02-20-25 阅读全文
posted @ 2020-04-20 11:23 Fiona_Y 阅读(509) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页