Skip to content

Commit

Permalink
BatchNorm -> BatchNormalization
Browse files Browse the repository at this point in the history
  • Loading branch information
okdshin committed Oct 16, 2018
1 parent d395001 commit 3472cc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion menoh/attribute_completion_and_shape_inference.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ add_variable_to_table(output(0), dtype_of(input(0)),
else


if(node.op_type == "BatchNorm") {
if(node.op_type == "BatchNormalization") {


{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def main():
assert(2 <= ndims_of(input(0)));
'''))
code_list.append(
make_completion_code("BatchNorm", [
make_completion_code("BatchNormalization", [
("epsilon", "float", "1.e-05f"),
("momentum", "float", "0.9f"),
("spatial", "int", "1"),
Expand Down

0 comments on commit 3472cc2

Please sign in to comment.