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

Method __init__

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

Source from the content-addressed store, hash-verified

91class MeanPoolAggregator(BasePoolAggregator):
92
93 def __init__(self, dim, *args, **kwargs):
94 super(MeanPoolAggregator, self).__init__(dim, *args, **kwargs)
95
96 def pool(self, inputs):
97 return tf.reduce_mean(inputs, axis=1)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected