-
(keras) model과 weight 종속성IT 지식 창고 2020. 9. 22. 18:06
2020.09.22 작성
1. model을 load할 때, tensorflow 2.3에서 만든 model이 2.2이 호환되지 않음. 그 반대는 가능함.
2. model == weight라고 할 수 있음
-
model의 레이어 수와 weight의 레이어수가 같아야함.
model의 레이어 수가 더 적을 경우 아래와 같은 에러가 남.
You are trying to load a weight file containing 23 layers into a model with 19 layers. #23개의 레이어가 포함되어있는 weight 파일을 19개의 레이어로 이루어진 model에 로드하려고 합니다.
-
model의 Input shape및 channel과 weight가 같아야함.
model의 채널이 다를 경우 아래와 같은 에러가 남.
Shapes (3, 3, 3, 32) and (32, 1, 3, 3) are incompatible #input shape이 (256, 256, 3) model에 (256, 256, 1)로 만들어진 weight를 load할 경우 발생
'IT 지식 창고' 카테고리의 다른 글
(Book) 실무에 적용되는 딥러닝 기술 예제를 보기 위한 책 (0) 2020.10.14 (selenium) Internet explorer 11에서 작동이 잘 안될 때 (창만 켜지는 경우) (0) 2020.10.12 (Pillow) alpha값을 이용한 이미지 합성 (0) 2020.09.17 (tensorflow) tensorflow 2.2.0와 호환되는 cuda, cuDNN 버전 (0) 2020.09.10 (tensorflow) tensorflow 2.x GPU 메모리 제한 후 필요시 증가 (0) 2020.09.10 댓글
-