«verbose» 태그된 질문


5
모델을 검증하는 동안 Keras에서 verbose를 사용하는 것은 무엇입니까?
LSTM 모델을 처음으로 실행하고 있습니다. 내 모델은 다음과 같습니다. opt = Adam(0.002) inp = Input(...) print(inp) x = Embedding(....)(inp) x = LSTM(...)(x) x = BatchNormalization()(x) pred = Dense(5,activation='softmax')(x) model = Model(inp,pred) model.compile(....) idx = np.random.permutation(X_train.shape[0]) model.fit(X_train[idx], y_train[idx], nb_epoch=1, batch_size=128, verbose=1) 모델을 훈련하는 동안 verbose를 사용하는 것은 무엇입니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.