TensorFlow保存读取模型
保存模型import tensorflow as tfimport numpy as npdef add_layer(inputs, in_size, out_size, n_layer, activation_function=None): layer_name = 'layer%s'%n_layer with tf.name_scope(layer_name):