笔记
挥手的延迟
我不是一个好博主,只是一个博客搬运工!
展开
-
python 数据集划分:train :val
python 数据集划分:train :val本代码将带有标签值的图片数据集,划分为可以调节比例大小的 train :val# @@@@@@@@ 划分数据集import osimport cv2 as cvimport xml.etree.ElementTree as ETimport randomimport shutilimgs_path = r'./ /' # 原来的图片集,xml_path = r'./ /' # 原来的标签值imgnew_path原创 2021-09-27 21:21:59 · 1098 阅读 · 0 评论 -
AttributeError: ‘NoneType‘ object has no attribute ‘astype‘
Traceback (most recent call last):File “A:/Faster-RCNN-TensorFlow-Python3/demo.py”, line 173, in test_net(sess, net, imdb, ‘default’)File “A:\Faster-RCNN-TensorFlow-Python3\lib\utils\test.py”, line 169, in test_netscores, boxes = im_detect(sess, net, i原创 2020-10-23 09:34:28 · 603 阅读 · 2 评论 -
运行train.py不能读取vgg.ckpt文件问题解决
1.下载预训练模型VGG16网络和其他你感兴趣的网络,下载地址: https://github.com/tensorflow/models/tree/master/research/slim#pre-trained-models.在data文件夹下新建imagenet_weights文件夹,将下载好的网络放到此文件夹下。注意要将vgg_16.ckpt重命名为vgg16.ckpt注意: 这里下载的VGG16模型是vgg_16_2016_08_28.tar,这是linux系统上的文件,需要在Linux系统原创 2020-08-28 16:34:07 · 542 阅读 · 0 评论