딥러닝_문법정리In [ ]:# 회귀from tensorflow.keras.layers import Input, Dense, Dropoutfrom tnesorflow.keras.models import Sequentialfrom tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint# 모델 선언model = Sequential([Input(shape = (nfeatures, )), Dense(x1, activation = 'relu'), Dropout(0.2), Dense(x2, activation ='relu'), D..