获取提交错误:

ERROR: The value '7.63E+15' in the key column 'ID' has already been defined (Line 23029, Column 1).

链接到挑战:https://www.kaggle.com/c/santander-value-prediction-challenge

提交文件的头:
          ID         target
0      000137c73  5.944923e+06
1      00021489f  5.944923e+06
2      0004d7953  5.944923e+06
3      00056a333  5.944923e+06
4      00056d8eb  5.944923e+06

最佳答案

我猜您已经使用了excel或LibreOffice Calc。在excel中打开文件以查看输出将折叠您的格式。通常,最好的办法是完全避免使用Excel。您在使用Python吗?最简单的方法是加载示例提交,替换目标列并保存:

ss = pd.read_csv('sample_submission.csv')
ss.loc[:, 'target'] = preds

ss.to_csv('sub.csv',
      index=False)

关于pandas - Kaggle文件提交错误(Santander值(value)预测挑战),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51059644/

10-10 11:58