• 2022-06-01
    中国大学MOOC: 使用Sequential()函数搭建神经网络训练MNIST数据集的代码为:model = tf.keras.models.Sequential([ tf.keras.layers.Flatten(), tf.keras.layers.Dense(128, activation=relu), tf.keras.layers.Dense(10, activation=softmax)])请问使用model.summary()打印网络结构和参数统计中,Total params的数目为?
  • 举一反三