3.1神经网络快速搭建

使用八股搭建神经网络

用Tensorflow API:tf.keras搭建网络八股
import
train, test
model = tf.keras.models.Sequential
model.compile
model.fit
model.summary

神经网络流程

model.compile

model.fit

model.summary

你可能感兴趣的:(3.1神经网络快速搭建)