老师,为什么第一个Dense Layer的input_shape是(8,)?
官网里这样描述
Input shape:
N-D tensor with shape: (batch_size, …, input_dim). The most common situation would be a 2D input with shape (batch_size, input_dim).
我理解这里的input_dim就是这个8个维度,但为什么在代码里需要把它放在tuple的第二个位置?
我们这里没有设置batch size,如果要设置batch size=100,这个input_shape要写成(8,100)吗?
还是我理解的(8,)有误?
不懂,烦请老师仔细讲一下,谢谢!