def build_model(optimizer):
#모델링
model = Sequential()
model.add( Dense(units = 6 , activation = 'relu' , input_shape=(11,) ) )
model.add(Dense(units = 8 , activation = 'relu' ))
model.add( Dense(units=1 , activation = 'sigmoid' ))
model.compile(optimizer = optimizer, loss = 'binary_crossentropy' ,metrics= [ 'accuracy' ] )
return model
컴파일에 옵티마이저 파라미터에
저위에있는 빌드_모델(옵티마이저)에 괄호안에있는 옵티마이저 라는 변수를 옵티마이저(파라미터) 값으로 설정
이렇게 할경우
가능
'파이썬 > 텐서플로우' 카테고리의 다른 글
Tensorflow 이미지분류(ANN) 과 Flatten (0) | 2022.12.29 |
---|---|
epoch history (0) | 2022.12.28 |
tensorflow legression 유형 모델링 하기 (0) | 2022.12.28 |
GridSearch를 이용한 최적의 하이퍼 파라미터 찾기 (0) | 2022.12.27 |
tensorflow : Logistic Classification유형 모델링 하기 (1) | 2022.12.27 |