Benzzzxxx
Benzzzxxx
> You need to change the labels list in config I have changed the labels list in config.But also meet this question.
请问,如何训练自己的数据?数据集也用labelimage做成了VOC格式放入了相应的位置, 我从零开始训练时,出现问题 ValueError:Cannot feed value of shape (45,7,7,25) for tensor 'placeholder:0' ,which has shape '(?,7,7,9)' ------------------------------------------------------------------------------------------------------------------- 我仔细检查了能够训练的VOC2007数据 feed_dict images.shape={45,448,448,3} labels.shape={45,7,7,25} 而换成我自己的数据训练时,shape也是一致的,这样来看数据接口是没有啥问题了,不知道问题出现在哪里呢? 根据源代码,yolo_net.py中 `self.labels = tf.placeholder( tf.float32, [None, self.cell_size, self.cell_size, 5...
> > ## 请问,如何训练自己的数据?数据集也用labelimage做成了VOC格式放入了相应的位置, 我从零开始训练时,出现问题 > > ValueError:Cannot feed value of shape (45,7,7,25) for tensor 'placeholder:0' ,which has shape '(?,7,7,9)' > > ## 我仔细检查了能够训练的VOC2007数据 feed_dict > > images.shape={45,448,448,3} > >...