강몬드의 프로그래밍 이야기

Error when using classify in caffe 본문

학습/딥러닝

Error when using classify in caffe

강몬드 2016. 1. 14. 19:33

http://stackoverflow.com/questions/30808735/error-when-using-classify-in-caffe


Let go to line 253-254 in caffe/python/caffe/io.py Replace


if ms != self.inputs[in_][1:]:
    raise ValueError('Mean shape incompatible with input shape.')

By


if ms != self.inputs[in_][1:]:
    print(self.inputs[in_])
    in_shape = self.inputs[in_][1:]
    m_min, m_max = mean.min(), mean.max()
    normal_mean = (mean - m_min) / (m_max - m_min)
    mean = resize_image(normal_mean.transpose((1,2,0)),in_shape[1:]).transpose((2,0,1)) * (m_max - m_min) + m_min
    #raise ValueError('Mean shape incompatible with input shape.')


'학습 > 딥러닝' 카테고리의 다른 글

신경망과 딥러닝 3.신경망의 구조  (0) 2016.01.25
신경망과 딥러닝 2.시그모이드 뉴런  (0) 2016.01.23
신경망과 딥러닝 1.퍼셉트론  (0) 2016.01.19
혼자 생각  (0) 2016.01.12
컨볼루션 신경망 시각화  (0) 2015.12.22
Comments