Home
last modified time | relevance | path

Searched refs:variables_module (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/linalg/
Dlinear_operator_tridiag_test.py25 from tensorflow.python.ops import variables as variables_module unknown
119 diag = variables_module.Variable([[3., 6., 2.], [2., 4., 2.], [5., 1., 2.]])
141 variables_module.Variable([3., 6., 2.]),
142 variables_module.Variable([2., 4., 2.]),
143 variables_module.Variable([5., 1., 2.])]
152 variables_module.Variable([2., 4., 2.]),
174 matrix = variables_module.Variable([[3., 2., 0.], [1., 6., 4.], [0., 2, 2]])
Dlinear_operator_zeros_test.py25 from tensorflow.python.ops import variables as variables_module unknown
189 linalg_lib.LinearOperatorZeros(num_rows=variables_module.Variable(2))
193 num_rows=2, num_columns=variables_module.Variable(3))
197 num_rows=2, batch_shape=variables_module.Variable([2]))
Dlinear_operator_full_matrix_test.py27 from tensorflow.python.ops import variables as variables_module unknown
116 matrix = variables_module.Variable([[2.]])
214 matrix = variables_module.Variable([[2.]])
256 matrix = variables_module.Variable([[2., 1.]])
Dlinear_operator_low_rank_update_test.py26 from tensorflow.python.ops import variables as variables_module unknown
161 variables_module.Variable([1.], name="diag"),
167 u=variables_module.Variable([[2.]], name="u"),
168 v=variables_module.Variable([[1.25]], name="v")
170 diag_update=variables_module.Variable([1.25], name="diag_update")
Dlinear_operator_toeplitz_test.py30 from tensorflow.python.ops import variables as variables_module unknown
143 col = variables_module.Variable([1.])
144 row = variables_module.Variable([1.])
Dlinear_operator_householder_test.py24 from tensorflow.python.ops import variables as variables_module unknown
95 reflection_axis = variables_module.Variable([1., 3., 5., 8.])
Dlinear_operator_block_lower_triangular_test.py27 from tensorflow.python.ops import variables as variables_module unknown
182 variables_module.Variable([[1., 0.], [0., 1.]]),
186 variables_module.Variable([[2., 0.], [1., 0.]]))
188 variables_module.Variable([[3., 1.], [1., 3.]]),
Dlinear_operator_lower_triangular_test.py23 from tensorflow.python.ops import variables as variables_module unknown
117 tril = variables_module.Variable([[1., 0.], [0., 1.]])
Dlinear_operator_kronecker_test.py26 from tensorflow.python.ops import variables as variables_module unknown
259 matrix_1 = variables_module.Variable([[1., 0.], [0., 1.]])
260 matrix_2 = variables_module.Variable([[2., 0.], [0., 2.]])
Dlinear_operator_inversion_test.py23 from tensorflow.python.ops import variables as variables_module unknown
132 matrix = variables_module.Variable([[1., 2.], [3., 4.]])
Dlinear_operator_identity_test.py28 from tensorflow.python.ops import variables as variables_module unknown
273 linalg_lib.LinearOperatorIdentity(num_rows=variables_module.Variable(2))
277 num_rows=2, batch_shape=variables_module.Variable([3]))
545 num_rows=variables_module.Variable(2), multiplier=1.23)
548 multiplier = variables_module.Variable(1.23)
Dlinear_operator_diag_test.py25 from tensorflow.python.ops import variables as variables_module unknown
238 diag = variables_module.Variable([[2.]])
Dlinear_operator_block_diag_test.py26 from tensorflow.python.ops import variables as variables_module unknown
252 matrices.append(variables_module.Variable(
Dlinear_operator_circulant_test.py27 from tensorflow.python.ops import variables as variables_module unknown
163 spectrum = variables_module.Variable(
239 spectrum = variables_module.Variable(
691 spectrum = variables_module.Variable(
Dlinear_operator_adjoint_test.py25 from tensorflow.python.ops import variables as variables_module unknown
245 matrix = variables_module.Variable([[1., 2.], [3., 4.]])
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_util.py31 from tensorflow.python.ops import variables as variables_module unknown
163 isinstance(x, variables_module.Variable) or
/external/tensorflow/tensorflow/python/keras/saving/
Dhdf5_format.py35 from tensorflow.python.ops import variables as variables_module unknown
899 if any(not isinstance(w, variables_module.Variable) for w in weights):
/external/tensorflow/tensorflow/python/keras/
Dbackend.py80 from tensorflow.python.ops import variables as variables_module unknown
220 variables_module.Variable,
1088 v = variables_module.Variable(
1198 [variables_module.is_variable_initialized(v) for v in candidate_vars])
1210 session.run(variables_module.variables_initializer(uninitialized_vars))
1278 (ops.Tensor, variables_module.Variable,
4964 if (not isinstance(output, (ops.EagerTensor, variables_module.Variable)) and
5020 not isinstance(output, (ops.EagerTensor, variables_module.Variable)) and
5110 if (not isinstance(output, (ops.EagerTensor, variables_module.Variable)) and
6558 if isinstance(tensor, variables_module.Variable):