Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
typo error of relu name (#3977)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlvector authored and piiswrong committed Nov 25, 2016
1 parent 8efc3c4 commit 550ae83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/fcn-xs/symbol_fcnxs.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def vgg16_score(input, numclass, workspace_default=1024):
relu5_1 = mx.symbol.Activation(data=conv5_1, act_type="relu", name="relu5_1")
conv5_2 = mx.symbol.Convolution(data=relu5_1, kernel=(3, 3), pad=(1, 1), num_filter=512,
workspace=workspace_default, name="conv5_2")
relu5_2 = mx.symbol.Activation(data=conv5_2, act_type="relu", name="conv1_2")
relu5_2 = mx.symbol.Activation(data=conv5_2, act_type="relu", name="relu5_2")
conv5_3 = mx.symbol.Convolution(data=relu5_2, kernel=(3, 3), pad=(1, 1), num_filter=512,
workspace=workspace_default, name="conv5_3")
relu5_3 = mx.symbol.Activation(data=conv5_3, act_type="relu", name="relu5_3")
Expand Down

0 comments on commit 550ae83

Please sign in to comment.