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

后端 未结 5 938
一个人的身影
一个人的身影 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:23

    Check documentation for model.fit here.

    By setting verbose 0, 1 or 2 you just say how do you want to 'see' the training progress for each epoch.

    verbose=0 will show you nothing (silent)

    verbose=1 will show you an animated progress bar like this:

    verbose=2 will just mention the number of epoch like this:

提交回复
热议问题