报错:SyntaxError: unexpected character after line continuation character的解决方法
Posted on 2020-06-23 11:39 Alex_bd 阅读(38899) 评论(0) 编辑 收藏 举报if opt.freeze_layers: output_layer_indices = [idx - 1 for idx, module in enumerate(model.module_list) \ if isinstance(module, YOLOLayer)] freeze_layer_indices = [x for x in range(len(model.module_list)) if\ (x not in output_layer_indices) and \ (x - 1 not in output_layer_indices)] for idx in freeze_layer_indices: for parameter in model.module_list[idx].parameters(): parameter.requires_grad_(False)
注意:上面的代码表面看起来没有问题,但是报错:SyntaxError:unexpected character after line continuation character 。
这里出现问题的原因是:
第一行的换行符“\” 后面存在空格。当换行符后面存在空格时,程序就会报错。
解决方法:
很简单,就把换行符“\” 后面的空格都删掉,问题就解决了。
也就是说,换行符后面是不允许再存在其他东西的。 包括 注释#