1.http://blog.csdn.net/hao529good/article/details/46544163   我用的训练好的模型参数是data/fast_rcnn__models/vgg_cnn_m_1024_fast_rcnn_iter_40000.caffemodel

2.

fast rcnn训练自己数据小结

原来的代码是

raw_data = sio.loadmat(filename)['boxes'].ravel()

但用我自己生成的.mat文件的名字是al_boxes

# for key in raw_data:          用print打印出来就看得到all_boxes
#     print key
raw_data = sio.loadmat(filename)['all_boxes'].ravel()    

3. TypeError: Error when calling the metaclass bases
    module.__init__() takes at most 2 arguments (3 given)

很奇怪的一个问题,将from .kakou import kakou与from .imdb import imdb换了位置就好了

fast rcnn训练自己数据小结

http://blog.csdn.net/flybywind/article/details/7463296

 

相关文章:

  • 2022-01-20
  • 2021-06-14
  • 2021-09-21
  • 2022-12-23
  • 2022-01-17
  • 2021-05-14
  • 2022-01-07
  • 2021-09-03
猜你喜欢
  • 2021-09-10
  • 2021-07-08
  • 2021-12-06
  • 2021-05-29
  • 2021-07-09
  • 2021-07-15
  • 2021-12-19
相关资源
相似解决方案