Home
last modified time | relevance | path

Searched refs:linear_regression (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/contrib/eager/python/examples/linear_regression/
Dlinear_regression_test.py30 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)
Dlinear_regression_graph_test.py23 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)
DBUILD9 name = "linear_regression",
10 srcs = ["linear_regression.py"],
17 srcs = ["linear_regression.py"],
/external/tensorflow/tensorflow/contrib/eager/python/examples/
DBUILD13 "//tensorflow/contrib/eager/python/examples/linear_regression:linear_regression_lib",
/external/tensorflow/tensorflow/contrib/learn/python/learn/
Dmodels.py50 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/
Dguide.md14 …ession](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/linear_regression)