data-science-notebook icon indicating copy to clipboard operation
data-science-notebook copied to clipboard

:book: 每一个伟大的思想和行动都有一个微不足道的开始

Results 1 data-science-notebook issues
Sort by recently updated
recently updated
newest added
trafficstars

在effective-tf.md中定义模型函数的时候, ```py import numpy as np import TensorFlow as tf x = tf.placeholder(tf.float32) y = tf.placeholder(tf.float32) w = tf.get_variable("w", shape=[3, 1]) f = tf.stack([tf.square(x), x, tf.ones_like(x)], 1) yhat = tf.squeeze(tf.matmul(f,...