你是我的小可爱 发表于 2020-9-10 10:58:24

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
>>>
这种报错怎么改,感谢

bonst 发表于 2020-9-10 11:01:08

你的源代码不发出来怎么知道错在哪里,怎么修改

风丶少 发表于 2020-9-10 16:15:00

TypeError: 'float' object is not iterable
浮点数对象不可迭代,你肯定是哪里用了for...in...range(float)

怀心抱素 发表于 2020-9-10 16:28:04

p_sentence 应该是你这个变量的问题。

你是我的小可爱 发表于 2020-9-10 16:44:34

怀心抱素 发表于 2020-9-10 16:28
应该是你这个变量的问题。

好的谢谢,我在仔细检查一下

一抹心尘 发表于 2020-10-30 18:56:09

你的报错信息,我看了一下,第11行,第96行,和第44行都有错误,且对象是不可迭代的。
你去检查一下float和p_sentence 这几行代码,肯定就能解决。
页: [1]
查看完整版本: python