Home
last modified time | relevance | path

Searched refs:weights2 (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
Dstability_test.py152 weights2 = ([regressor2.get_variable_value('dnn/hiddenlayer_0/weights')] +
154 for w1, w2 in zip(weights1, weights2):
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
Dtree_utils.cc279 std::vector<float> weights2; in BestSplitDominatesClassificationBootstrap() local
281 second_best_index, &weights2); in BestSplitDominatesClassificationBootstrap()
282 random::DistributionSampler ds2(weights2); in BestSplitDominatesClassificationBootstrap()
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
Dgrow_stats.cc358 std::vector<float> weights2(num_outputs_ * 2); in CheckFinishEarlyBootstrap() local
359 MakeBootstrapWeights(second_best_index, &weights2); in CheckFinishEarlyBootstrap()
360 random::DistributionSampler ds2(weights2); in CheckFinishEarlyBootstrap()
/external/mesa3d/src/mesa/main/
Dtexcompress_bptc.c507 static const uint8_t weights2[] = { 0, 21, 43, 64 }; in interpolate() local
512 NULL, NULL, weights2, weights3, weights4 in interpolate()
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
Dcudnn_rnn_test.py592 weights2, biases2 = saveable2.format_converter._opaque_to_cu_canonical(
610 weights2_v, biases2_v = sess.run([weights2, biases2])
615 weights2_v_restored, biases2_v_restored = sess.run([weights2, biases2])
/external/tensorflow/tensorflow/python/framework/
Dmeta_graph_test.py322 weights2 = variables.Variable(
344 hidden2 = nn_ops.relu(math_ops.matmul(hidden1, weights2) + biases2)
/external/tensorflow/tensorflow/python/keras/saving/
Dhdf5_format_test.py220 weights2 = hdf5_format.preprocess_weights_for_loading(
224 for (x, y) in zip(weights1, weights2)
/external/deqp/framework/common/
DtcuCompressedTexture.cpp1242 static const deUint16 weights2[4] = { 0, 21, 43, 64 }; variable
1460 const deUint16* weights[] = {weights2, weights3, weights4}; in interpolate()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h1336 int8x16_t weights2 = vld1q_s8(shuffled_weights_ptr + 32); in ShuffledFullyConnectedWorkerImpl() local
1346 vmull_s8(vget_low_s8(weights2), vget_low_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1354 vmlal_s8(local_accum2, vget_high_s8(weights2), vget_high_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1417 int8x16_t weights2 = vld1q_s8(shuffled_weights_ptr + 32); in ShuffledFullyConnectedWorkerImpl() local
1429 local_accum2 = vmull_s8(vget_low_s8(weights2), vget_low_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
1436 vmlal_s8(local_accum2, vget_high_s8(weights2), vget_high_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
Doptimized_ops.h1392 int8x16_t weights2 = vld1q_s8(shuffled_weights_ptr + 32); in ShuffledFullyConnectedWorkerImpl() local
1402 vmull_s8(vget_low_s8(weights2), vget_low_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1410 vmlal_s8(local_accum2, vget_high_s8(weights2), vget_high_s8(input)); in ShuffledFullyConnectedWorkerImpl()
1473 int8x16_t weights2 = vld1q_s8(shuffled_weights_ptr + 32); in ShuffledFullyConnectedWorkerImpl() local
1485 local_accum2 = vmull_s8(vget_low_s8(weights2), vget_low_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
1492 vmlal_s8(local_accum2, vget_high_s8(weights2), vget_high_s8(input##B)); \ in ShuffledFullyConnectedWorkerImpl()
/external/tensorflow/tensorflow/python/training/
Dsaver_test.py2503 weights2 = variables.VariableV1(
2522 hidden2 = nn_ops.relu(math_ops.matmul(hidden1, weights2) + biases2)