python
Traceback (most recent call last):File "F:\match_deeplearning\text_matching-master\abcnn\train.py", line 11, in <module>
p, h, y = load_char_data('input/train2.csv', data_size=None)
File "F:\match_deeplearning\text_matching-master\abcnn\..\utils\load_data.py", line 96, in load_char_data
p_c_index, h_c_index = char_index(p, h)
File "F:\match_deeplearning\text_matching-master\abcnn\..\utils\load_data.py", line 44, in char_index
p = for word in p_sentence if len(word.strip()) > 0 and word.lower() in word2idx.keys()]
TypeError: 'float' object is not iterable
>>>
这种报错怎么改,感谢 你的源代码不发出来怎么知道错在哪里,怎么修改 TypeError: 'float' object is not iterable
浮点数对象不可迭代,你肯定是哪里用了for...in...range(float) p_sentence 应该是你这个变量的问题。 怀心抱素 发表于 2020-9-10 16:28
应该是你这个变量的问题。
好的谢谢,我在仔细检查一下
你的报错信息,我看了一下,第11行,第96行,和第44行都有错误,且对象是不可迭代的。
你去检查一下float和p_sentence 这几行代码,肯定就能解决。
页:
[1]