MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / CustomTensor

Class CustomTensor

tensorflow/python/util/dispatch_test.py:33–38  ·  view source on GitHub ↗

A fake composite tensor class, for testing type-based dispatching.

Source from the content-addressed store, hash-verified

31
32
33class CustomTensor(object):
34 """A fake composite tensor class, for testing type-based dispatching."""
35
36 def __init__(self, tensor, score):
37 self.tensor = ops.convert_to_tensor(tensor)
38 self.score = score
39
40
41@tf_export("test_op")

Calls

no outgoing calls