Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Backpropagation
- NeuralNetwork
- 딥러닝
- MNIST
- 리눅ㅅ
- 콘볼루션 신경망
- 안드로이드
- Machine Learning
- 사용자 매크로
- learning
- 클래스
- 이미지 분류
- TensorFlow
- 재정의
- mobilenet
- deep learning
- Network
- 분류기
- ResNet
- convolutional neural network
- deeplearning
- 컴퓨터비전
- 자바
- Machine
- 컨볼루션 신경망
- 신경망
- vggnet
- 텐서플로우
- 메소드
- 알렉스넷
Archives
- Today
- Total
강몬드의 프로그래밍 이야기
Error when using classify in caffe 본문
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