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

后端 未结 5 936
一个人的身影
一个人的身影 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条回答
  •  一生所求
    2021-01-29 23:32

    By default verbose = 1,

    verbose = 1, which includes both progress bar and one line per epoch

    verbose = 0, means silent

    verbose = 2, one line per epoch i.e. epoch no./total no. of epochs

提交回复
热议问题