Fix typo in layer name.

This commit is contained in:
2018-03-20 15:35:29 +01:00
parent 229b7c8004
commit 42a5d882d6

View File

@@ -9,7 +9,7 @@ const unordered_map<string_view, LayerInfo::Type> LayerInfo::NAME_TYPE_MAP = {
{"ReLU", Type::ReLU},
{"Pooling", Type::Pooling},
{"InnerProduct", Type::InnerProduct},
{"DropOut", Type::DropOut},
{"Dropout", Type::DropOut},
{"LRN", Type::LRN},
{"Split", Type::Split},
{"Softmax", Type::Softmax}