Skip to content
This repository was archived by the owner on Oct 19, 2019. It is now read-only.

Modification to return logit in inference_small() #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
5 changes: 4 additions & 1 deletion resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ def inference_small(x,
c['fc_units_out'] = num_classes
c['num_blocks'] = num_blocks
c['num_classes'] = num_classes
inference_small_config(x, c)
x = inference_small_config(x, c)

return x


def inference_small_config(x, c):
c['bottleneck'] = False
Expand Down