[딥러닝] 텐서플로우 모델저장 / 텐서보드 이용하기
텐서플로우 모델 저장 및 재사용, 텐서보드 사용하기 with tf.name_scope(‘layer1′): W1 = tf.Variable(tf.random_uniform([2, 10], -1., 1.), name=’W1’) L1 = tf.nn.relu(tf.matmul(X, W1)) with tf.name_scope(‘layer2′): W2 = tf.Variable(tf.random_uniform([10, 20], -1., 1.), name=’W2’) L2...
최근 댓글