在用split时报错:ValueError: not enough values to unpack (expected 2, got 1)
is_same, color_left, color_right = index.split(\'\\t\')test_img[\'is_same\'] = int(is_same)test_img[\'left\'] = color_lefttest_img[\'right\'] = color_righttest_img_pair_list.append(test_img)
出现这种情况的原因是你要分割的数据中,其中找不到分隔符 ‘\\t’ ,查找原因后发现中间有几条数据是以空格分隔的,所以重新生成数据后,问题即解决。