Unverified Commit ea64b512 authored by XiwuChen's avatar XiwuChen Committed by GitHub
Browse files

fix typo in conv.py (#1759)

Fix typo in conv.py.
parent 34f227ef
......@@ -35,7 +35,7 @@ def build_conv_layer(cfg, *args, **kwargs):
layer_type = cfg_.pop('type')
if layer_type not in CONV_LAYERS:
raise KeyError(f'Unrecognized norm type {layer_type}')
raise KeyError(f'Unrecognized layer type {layer_type}')
else:
conv_layer = CONV_LAYERS.get(layer_type)
......
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