Unverified Commit 396095a3 by kshitij12345 Committed by GitHub

fix #4670: add bias for fc layer (#4801)

parent 73a9e997
......@@ -120,7 +120,9 @@ def mobile_net(num_classes=1000, data_shape=(1, 3, 224, 224),
pool = relay.nn.global_avg_pool2d(data=body, layout=layout)
flatten = relay.nn.batch_flatten(data=pool)
weight = relay.var('fc_weight')
bias = relay.var('fc_bias')
fc = relay.nn.dense(data=flatten, weight=weight, units=num_classes)
fc = relay.nn.bias_add(fc, bias)
softmax = relay.nn.softmax(data=fc)
return relay.Function(relay.analysis.free_vars(softmax), softmax)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment