File "<ipython-input-15-155e515d797c>", line 3
DOWNLOAD_BASE = 'file:H:\New_folder\models\research\object_detection'
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 7-8: malformed \N character escape
答案 0 :(得分:0)
您似乎需要转义文件路径中的反斜杠。
所以该行应该是:
DOWNLOAD_BASE = 'file:H:\\New_folder\\models\\research\\object_detection'