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

Function _emb_convert_grad

model_demo/DeepCrossing/operators.py:412–414  ·  view source on GitHub ↗
(op, grad)

Source from the content-addressed store, hash-verified

410 return trainer_ops.emb_convert(inputs,num=num,dim=dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
411@ops.RegisterGradient("EmbConvert")
412def _emb_convert_grad(op, grad):
413 with tf.name_scope("EmbConvertGrad"), tf.xla.experimental.jit_scope(compile_ops=False):
414 return trainer_ops.emb_convert_grad(grad,num=op.get_attr("num"),dim=op.get_attr("dim"),eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))
415
416
417def e_relu(inputs):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected