python报错ValueError: could not convert string to float: ‘ ‘

之前写好的python代码最近来运行突然报错:ValueError: could not convert string to float: ' '

  • 百思不得其解,后来才发现是用于训练的数据集-“test.txt”中的字符串不小心插入了一个空格,将这个空格删除就能正常运行了。

总结:要转换成浮点数的字符串中包含 非数字字符 的东西,比如空字符串、字母都不可以转换为浮点数。

解决办法:检查一般自己的字符串,看看是否有非数字字符(空格、Tab也包括在内)

你可能感兴趣的:(python,python,神经网络)