Home
last modified time | relevance | path

Searched refs:weights1 (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/python/framework/
Dmeta_graph_test.py305 weights1 = variables.Variable(
318 hidden1 = nn_ops.relu(math_ops.matmul(images, weights1) + biases1)
716 weights1 = variables.Variable([[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]],
720 nn_ops.relu(math_ops.matmul(images, weights1) + biases1, name="relu")
740 weights1 = variables.Variable(
746 weights1 = variables.Variable(
748 nn_ops.relu(math_ops.matmul(images, weights1) + biases1, name="relu")
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
Dstability_test.py150 weights1 = ([regressor1.get_variable_value('dnn/hiddenlayer_0/weights')] +
154 for w1, w2 in zip(weights1, weights2):
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
Dtree_utils.cc274 std::vector<float> weights1; in BestSplitDominatesClassificationBootstrap() local
276 best_feature_index, &weights1); in BestSplitDominatesClassificationBootstrap()
277 random::DistributionSampler ds1(weights1); in BestSplitDominatesClassificationBootstrap()
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
Dgrow_stats.cc354 std::vector<float> weights1(num_outputs_ * 2); in CheckFinishEarlyBootstrap() local
355 MakeBootstrapWeights(best_index, &weights1); in CheckFinishEarlyBootstrap()
356 random::DistributionSampler ds1(weights1); in CheckFinishEarlyBootstrap()
/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_assignment_test.cc1923 auto weights1 = builder.AddInstruction( in TEST_F() local
1950 HloInstruction::CreateTuple({input1, weights1, output1})); in TEST_F()
1968 EXPECT_EQ(assignment->GetUniqueSlice(weights1, {}).ConsumeValueOrDie(), in TEST_F()
2393 auto weights1 = builder.AddInstruction( in TEST_F() local
2405 HloInstruction::CreateTuple({input1, weights1, output1})); in TEST_F()
2437 {input1, weights1, one, output1, while1->mutable_operand(0), while1, in TEST_F()
/external/tensorflow/tensorflow/python/training/
Dsaver_test.py2486 weights1 = variables.VariableV1(
2499 hidden1 = nn_ops.relu(math_ops.matmul(images, weights1) + biases1)
2569 weights1 = graph.as_graph_element("new_hidden1/weights:0")
2614 self.evaluate([weights1, biases1])
2640 weights1 = variables.VariableV1(
2643 nn_ops.relu(math_ops.matmul(images, weights1) + biases1, name="relu")
2697 weights1 = variables.VariableV1(
2700 nn_ops.relu(math_ops.matmul(images, weights1) + biases1, name="relu")
/external/tensorflow/tensorflow/python/keras/saving/
Dhdf5_format_test.py219 weights1 = layer.get_weights()
221 layer, weights1)
224 for (x, y) in zip(weights1, weights2)
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
Dcudnn_rnn_test.py589 weights1, biases1 = saveable1.format_converter._opaque_to_cu_canonical(
609 weights1_v, biases1_v = sess.run([weights1, biases1])
614 weights1_v_restored, biases1_v_restored = sess.run([weights1, biases1])
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
Doptimized_ops.h1391 int8x16_t weights1 = vld1q_s8(shuffled_weights_ptr + 16); in ShuffledFullyConnectedWorkerImpl() local
1400 vmull_s8(vget_low_s8(weights1), vget_low_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1408 vmlal_s8(local_accum1, vget_high_s8(weights1), vget_high_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1472 int8x16_t weights1 = vld1q_s8(shuffled_weights_ptr + 16); in ShuffledFullyConnectedWorkerImpl() local
1484 local_accum1 = vmull_s8(vget_low_s8(weights1), vget_low_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
1490 vmlal_s8(local_accum1, vget_high_s8(weights1), vget_high_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h1335 int8x16_t weights1 = vld1q_s8(shuffled_weights_ptr + 16); in ShuffledFullyConnectedWorkerImpl() local
1344 vmull_s8(vget_low_s8(weights1), vget_low_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1352 vmlal_s8(local_accum1, vget_high_s8(weights1), vget_high_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1416 int8x16_t weights1 = vld1q_s8(shuffled_weights_ptr + 16); in ShuffledFullyConnectedWorkerImpl() local
1428 local_accum1 = vmull_s8(vget_low_s8(weights1), vget_low_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
1434 vmlal_s8(local_accum1, vget_high_s8(weights1), vget_high_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()