[케라스 오류 해결] TypeError: The added layer must be an instance of class Layer
2020. 4. 24. 15:50ㆍ노트/Python : 프로그래밍
# TypeError: The added layer must be an instance of class Layer
from keras.layers import *
from keras.models import Sequential
from keras.applications.resnet50 import ResNet50
CLASS_COUNT = 10
base_model = ResNet50(
weights='imagenet',
include_top=False,
input_shape=(224, 224, 3),
pooling='avg',
)
base_model.trainable = False
model = Sequential([
base_model,
Dense(CLASS_COUNT, activation='softmax'),
])
이 코드 실행하고 오류 부분 다시 실행 해보기
'노트 > Python : 프로그래밍' 카테고리의 다른 글
[파이썬기초] 파이썬 함수 활용 모음 (0) | 2020.04.27 |
---|---|
[케라스] 개와 고양이 이미지사진 분류하기 CNN모델 코드 (2) | 2020.04.27 |
[케라스] 이미지 증식하기 코드 (1) | 2020.04.24 |
[신경망] MNIST 데이터를 이용한 CNN모델 코드 (0) | 2020.04.23 |
[케라스/텐서플로우] 주택가격 예측하기 코드 (0) | 2020.04.23 |