This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 396095a fix #4670: add bias for fc layer (#4801)
396095a is described below
commit 396095a3e8ad3d15bdc9c52b938d370d4b5ebbf5
Author: kshitij12345 <[email protected]>
AuthorDate: Mon Feb 3 00:27:12 2020 +0530
fix #4670: add bias for fc layer (#4801)
---
python/tvm/relay/testing/mobilenet.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/python/tvm/relay/testing/mobilenet.py
b/python/tvm/relay/testing/mobilenet.py
index f76b0c2..1b3ce03 100644
--- a/python/tvm/relay/testing/mobilenet.py
+++ b/python/tvm/relay/testing/mobilenet.py
@@ -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)