Diff of /layers/__init__.py [000000] .. [c0da92]

Switch to side-by-side view

--- a
+++ b/layers/__init__.py
@@ -0,0 +1,9 @@
+# -*- coding: utf-8 -*-
+
+from .aggregator import SumAggregator, ConcatAggregator, NeighAggregator
+
+Aggregator = {
+    'sum': SumAggregator,
+    'concat': ConcatAggregator,
+    'neigh': NeighAggregator
+}