What is the use of verbose in Keras while validating the model?

后端 未结 5 946
一个人的身影
一个人的身影 2021-01-29 22:32

I\'m running the LSTM model for the first time. Here is my model:

opt = Adam(0.002)
inp = Input(...)
print(inp)
x = Embedding(....)(inp)
x = LSTM(...)(x)
x = Bat         


        
5条回答
  •  猫巷女王i
    2021-01-29 23:22

    The order of details provided with verbose flag are as

    Less details.... More details

    0 < 2 < 1

    Default is 1

    For production environment, 2 is recommended

提交回复
热议问题