m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/net_types.py
diff options
context:
space:
mode:
authorMarcin Chrzanowski <m@m-chrzan.xyz>2021-05-02 20:35:04 +0200
committerMarcin Chrzanowski <m@m-chrzan.xyz>2021-05-02 20:35:04 +0200
commit194a2ac67bb956e05e5a076ecf6893a73e569589 (patch)
treee2829940ee771176aa7a73fd5c6b0612f03ae442 /src/net_types.py
parent45b67cbadd51d81bd55e759a07f1e1a5fbf5d5c4 (diff)
Implement small counting network
Diffstat (limited to 'src/net_types.py')
-rw-r--r--src/net_types.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net_types.py b/src/net_types.py
index bb52d50..14925c8 100644
--- a/src/net_types.py
+++ b/src/net_types.py
@@ -1,5 +1,7 @@
import classification
+import counting_small
types = {
- 'classification': classification
+ 'classification': classification,
+ 'counting-small': counting_small
}