在TensorFlow中,可以使用model.summary()
方法來查看模型的參數信息。這個方法可以打印出模型的層結構,每一層的名稱,輸出shape以及參數數量等詳細信息。調用這個方法可以幫助你更好地了解模型的結構和參數情況。例如:
model = tf.keras.models.Sequential([
tf.keras.layers.Dense(64, activation='relu', input_shape=(784,)),
tf.keras.layers.Dense(10, activation='softmax')
])
model.summary()