Searched refs:linear_regression (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/contrib/eager/python/examples/linear_regression/ |
D | linear_regression_test.py | 30 from tensorflow.contrib.eager.python.examples.linear_regression import linear_regression 53 dataset = linear_regression.synthetic_dataset(true_w, true_b, noise_level, 70 model = linear_regression.LinearModel() 71 dataset = linear_regression.synthetic_dataset( 76 linear_regression.fit(model, dataset, optimizer, logdir=self._tmp_logdir) 89 dataset = linear_regression.synthetic_dataset( 97 model = linear_regression.LinearModel() 103 linear_regression.fit(model, burn_in_dataset, optimizer) 107 linear_regression.fit(model, dataset, optimizer)
|
D | linear_regression_graph_test.py | 23 from tensorflow.contrib.eager.python.examples.linear_regression import linear_regression 32 dataset = linear_regression.synthetic_dataset_helper( 42 model = linear_regression.LinearModel() 52 loss = linear_regression.mean_square_loss(model, x, y)
|
D | BUILD | 9 name = "linear_regression", 10 srcs = ["linear_regression.py"], 17 srcs = ["linear_regression.py"],
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/ |
D | BUILD | 13 "//tensorflow/contrib/eager/python/examples/linear_regression:linear_regression_lib",
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | models.py | 50 return linear_regression(x, y, init_mean=0.0, init_stddev=0.0) 68 def linear_regression(x, y, init_mean=None, init_stddev=1.0): function
|
/external/tensorflow/tensorflow/contrib/eager/python/g3doc/ |
D | guide.md | 14 …ession](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/linear_regression)
|