- 博客(6)
- 收藏
- 关注
原创 YOLOv2 代码解析
1、preprocess_true_boxes这个函数是得到detectors_mask(最佳预测的anchor boxes,每一个true boxes都对应一个anchor boxes),即找到每一个true box对应的最佳的anchor box,yolov2只是在5个anchor box中选取与gt具有最大iou的anchor box进行预测;matching_true_boxes(用于...
2019-07-09 10:50:15 738
原创 NMS和softNMS代码
NMS代码:import numpy as npdef py_cpu_nms(dets, thresh): """Pure Python NMS baseline.""" x1 = dets[:, 0] y1 = dets[:, 1] x2 = dets[:, 2] y2 = dets[:, 3] scores = dets[:, 4]...
2019-04-12 11:18:27 663
原创 readtfrecord时出错
报错:OutOfRangeError (see above for traceback): PaddingFIFOQueue '_1_get_batch/batch/padding_fifo_queue' is closed and has insufficient elements (requested 1, current size 0) [[Node: get_batch/ba...
2019-04-01 15:07:25 453 3
原创 tensorflow错误
报错信息:tensorflow.python.framework.errors_impl.NotFoundError: Failed to create a NewWriteableFile: dataset/record/train.tfrecords : ϵͳ\udcd5Ҳ\udcbb\udcb5\udcbdָ\udcb6\udca8\udcb5\udcc4·\udcbe\udcb6\ud...
2018-12-26 17:18:36 1493 2
转载 2018 PyCharm环境安装教程
转自:https://blog.csdn.net/elegentbeauty/article/details/79871440 2018 PyCharm环境安装教程环境准备:1.到PyCharm官网下载PyCharm安装包。2.下载了window版本的双击安装包进行安装。 3.自定义软件安装路径(建议路径中不要中文字符)如:F:\DevSoftware\Py...
2018-10-12 14:50:49 2066
原创 Git安装教程
Git下载地址:https://www.git-scm.com/download/win按照默认选项安装是可以的,也可以根据自己的需要来更改。配置path环境时,有三个选项use Git from Git Bash only Use Git from the Windows command Prompt Use Git and optional Unix tools from ...
2018-09-12 19:41:41 129
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人