What is the meaning of the “None” in model.summary of KERAS?

后端 未结 2 771
后悔当初
后悔当初 2020-12-05 23:54

What is the meaning of the (None, 100) in Output Shape? Is this(\"None\") the Sample number or the hidden dimension?

2条回答
  •  温柔的废话
    2020-12-06 00:39

    Yes, None in summary means a dynamic dimension of a batch (mini batch). This is why you can set any batch size to your model.

    The summary() method is part of TF that incorporates Keras method print_summary().

提交回复
热议问题