HomeSort by relevance Sort by last modified time
    Searched refs:weight_2 (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
resize_bicubic_op.cc 66 float weight_2; member in struct:tensorflow::__anon39895::WeightsAndIndices
84 out->weight_2 = coeffs_table[(kTableSize - offset) * 2];
94 const float weight_2, const float weight_3,
99 static_cast<float>(value_2) * weight_2 +
219 return Interpolate1D<T>(y_wai.weight_0, y_wai.weight_1, y_wai.weight_2,
326 x_wai.weight_2, x_wai.weight_3);
329 x_wai.weight_2, x_wai.weight_3);
332 x_wai.weight_2, x_wai.weight_3);
390 x_wai.weight_2, x_wai.weight_3);
429 T(curr_input_grad * y_wai.weight_0 * x_wai.weight_2);
    [all...]
  /external/tensorflow/tensorflow/python/training/
moving_averages_test.py 105 weight_2 = 22.0
106 wma_array = sess.run(wma, feed_dict={val: val_2, weight: weight_2})
107 numerator_2 = numerator_1 * decay + val_2 * weight_2 * (1.0 - decay)
108 denominator_2 = denominator_1 * decay + weight_2 * (1.0 - decay)

Completed in 179 milliseconds