MCPcopy Create free account
hub / github.com/alibaba/euler / __init__

Method __init__

tf_euler/python/utils/aggregators.py:102–103  ·  view source on GitHub ↗
(self, dim, *args, **kwargs)

Source from the content-addressed store, hash-verified

100class MaxPoolAggregator(BasePoolAggregator):
101
102 def __init__(self, dim, *args, **kwargs):
103 super(MaxPoolAggregator, self).__init__(dim, *args, **kwargs)
104
105 def pool(self, inputs):
106 return tf.reduce_max(inputs, axis=1)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected