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

Method call

tensorflow/python/eager/function.py:2613–2617  ·  view source on GitHub ↗
(self, args, kwargs)

Source from the content-addressed store, hash-verified

2611 return self.weakrefself_target__()
2612
2613 def call(self, args, kwargs):
2614 wrapped_fn = self.weakrefself_func__()
2615 if tf_inspect.ismethod(wrapped_fn):
2616 wrapped_fn = six.get_unbound_function(wrapped_fn)
2617 return wrapped_fn(self.weakrefself_target__(), *args, **kwargs)
2618
2619
2620def class_method_to_instance_method(original_function, instance):

Callers 1

_call_flatMethod · 0.45

Calls 1

wrapped_fnFunction · 0.85

Tested by

no test coverage detected