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

Function e_batch_norm

model_demo/DeepCrossing/operators.py:383–385  ·  view source on GitHub ↗
(inputs,scale,offset,mean,variance,epsilon)

Source from the content-addressed store, hash-verified

381
382
383def e_batch_norm(inputs,scale,offset,mean,variance,epsilon):
384 global eid,times
385 return trainer_ops.e_batch_norm(inputs,scale,offset,mean,variance,epsilon=epsilon,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
386@ops.RegisterGradient("EBatchNorm")
387def _e_batch_norm_grad(op, grad):
388 with tf.name_scope("EBatchNormGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected