Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vdcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def __init__(self,
self.pool_type = pool_type
self.proj_type = proj_type
self.use_bias = use_bias
self.logits = True
self.logits = logits

assert pool_type in ['max', 'k_max', 'conv']
assert proj_type in ['conv', 'identity']
Expand Down Expand Up @@ -311,4 +311,4 @@ def call(self,
print()
model = VDCNN(10, depth=49, shortcut=True, pool_type='conv', proj_type='conv')
out = model(x)
model.summary()
model.summary()