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 | 31 |
Tags
- TensorFlow
- 컴퓨터비전
- convolutional neural network
- 이미지 분류
- 클래스
- 콘볼루션 신경망
- vggnet
- 컨볼루션 신경망
- 텐서플로우
- learning
- Machine Learning
- 메소드
- 신경망
- 알렉스넷
- ResNet
- Backpropagation
- MNIST
- Network
- deeplearning
- 자바
- mobilenet
- NeuralNetwork
- Machine
- 분류기
- 재정의
- 사용자 매크로
- deep learning
- 리눅ㅅ
- 딥러닝
- 안드로이드
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