Home
last modified time | relevance | path

Searched refs:epsilon_ (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/
Dquantile_stream_resource.h37 epsilon_(epsilon), in BoostedTreesQuantileStreamResource()
62 float epsilon() const { return epsilon_; } in epsilon()
74 streams_.push_back(QuantileStream(epsilon_, max_elements_)); in ResetStreams()
94 const float epsilon_; variable
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dbatch_norm_op.cc38 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_)); in FusedBatchNormOp()
95 input, ctx->Input(1), ctx->Input(2), epsilon_, feature_index); in CompileImpl()
169 variance, xla::ScalarLike(variance, epsilon_)))); in CompileImpl()
176 epsilon_, feature_index); in CompileImpl()
196 float epsilon_; member in tensorflow::__anon73cf47b80111::FusedBatchNormOp
241 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_)); in FusedBatchNormGradOp()
287 xla::XlaOp epsilon = xla::ScalarLike(var, epsilon_); in Compile()
293 epsilon_, feature_index); in Compile()
319 auto epsilon = XlaHelpers::FloatLiteral(b, scale_dtype, epsilon_); in Compile()
345 float epsilon_; member in tensorflow::__anon73cf47b80111::FusedBatchNormGradOp
Dxla_self_adjoint_eig_op.cc29 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_)); in XlaSelfAdjointEigOp()
33 xla::SelfAdjointEig(ctx->Input(0), lower_, max_iter_, epsilon_); in Compile()
41 float epsilon_; member in tensorflow::__anon0b7db2050111::XlaSelfAdjointEigOp
Dxla_svd_op.cc29 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_)); in XlaSvdOp()
42 auto result = xla::SVD(ctx->Input(0), max_iter_, epsilon_, in Compile()
51 float epsilon_; member in tensorflow::__anon275bf88c0111::XlaSvdOp
/external/tensorflow/tensorflow/core/kernels/
Dfused_batch_norm_op.cc1189 epsilon_ = U(epsilon); in FusedBatchNormOpBase()
1320 side_input, epsilon_, exponential_avg_factor_, activation_mode_, y, in ComputeWithReservedSpace()
1326 side_input, epsilon_, exponential_avg_factor_, activation_mode_, y, in ComputeWithReservedSpace()
1337 U epsilon_; member in tensorflow::FusedBatchNormOpBase
1389 epsilon_ = U(epsilon); in FusedBatchNormGradOpBase()
1478 saved_maybe_inv_var_or_pop_var, epsilon_, x_backprop, scale_backprop, in ComputeWithReservedSpace()
1489 saved_maybe_inv_var_or_pop_var, epsilon_, x_backprop, scale_backprop, in ComputeWithReservedSpace()
1499 U epsilon_; member in tensorflow::FusedBatchNormGradOpBase
Dtraining_ops_gpu.cu.cc262 const T* const beta2_, const T* const epsilon_, const T* grad, in ApplyAdamKernel() argument
271 const T epsilon = (*epsilon_); in ApplyAdamKernel()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_MatrixSolveLs.pbtxt59 \\(\mathrm{cond}(A) \lt \frac{1}{\sqrt{\epsilon_{mach} } }\\) or \\(\lambda\\) is
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_fused_batch_norm_op.cc645 epsilon_ = epsilon; in MklFusedBatchNormOp()
776 MklBatchNormFwdParams fwdParams(src_dims, depth_, epsilon_, is_training_, in Compute()
918 float epsilon_; member in tensorflow::MklFusedBatchNormOp
1052 epsilon_ = epsilon; in MklFusedBatchNormGradOp()
1220 MklBatchNormBwdParams bwdParams(src_dims, diff_dst_dims, depth_, epsilon_, in Compute()
1305 float epsilon_; member in tensorflow::MklFusedBatchNormGradOp
/external/tensorflow/tensorflow/python/keras/
Dbackend.py4978 epsilon_ = _constant_to_tensor(epsilon(), output.dtype.base_dtype)
4979 output = clip_ops.clip_by_value(output, epsilon_, 1. - epsilon_)
5030 epsilon_ = _constant_to_tensor(epsilon(), output.dtype.base_dtype)
5031 output = clip_ops.clip_by_value(output, epsilon_, 1 - epsilon_)
5119 epsilon_ = _constant_to_tensor(epsilon(), output.dtype.base_dtype)
5120 output = clip_ops.clip_by_value(output, epsilon_, 1. - epsilon_)
/external/ImageMagick/Magick++/lib/Magick++/
DImage.h1142 void perceptible(const double epsilon_);
1143 void perceptibleChannel(const ChannelType channel_,const double epsilon_);
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instructions.h36 float epsilon() const { return epsilon_; } in epsilon()
55 float epsilon_ = 0.0f; variable
Dhlo_instructions.cc80 epsilon_(epsilon), in HloBatchNormInstruction()
97 proto.set_epsilon(epsilon_); in ToProto()
/external/ImageMagick/Magick++/lib/
DImage.cpp3819 void Magick::Image::perceptible(const double epsilon_) in perceptible() argument
3823 PerceptibleImage(image(),epsilon_,exceptionInfo); in perceptible()
3828 const double epsilon_) in perceptibleChannel() argument
3833 PerceptibleImage(image(),epsilon_,exceptionInfo); in perceptibleChannel()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes_test.cc2139 attrs.epsilon_ = epsilon; in CreateFusedBatchNormOp()