MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / e_huber_loss

Function e_huber_loss

operators.py:342–344  ·  view source on GitHub ↗
(pred,real,delta)

Source from the content-addressed store, hash-verified

340 return trainer_ops.e_leakyrelu_grad(grad,op.inputs[0],alpha = op.get_attr("alpha"),eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))
341
342def e_huber_loss(pred,real,delta):
343 global eid,times
344 return trainer_ops.e_huber_loss(pred,real,delta,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
345@ops.RegisterGradient("EHuberLoss")
346def _e_huber_loss_grad(op, grad):
347 with tf.name_scope("EHuberLossGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected