简体   繁体   English

Python:类型错误“float”对象不可迭代

[英]Python: Type error 'float' object is not iterable

My code is :我的代码是:

for ep in range(10):
    for x, y in tqdm(train_iterator.gen_batches(batch_size=64, 
                                           data_type="train")):
        x_embed = embedder(tokenizer(str_lower(x)))
        y_onehot = onehotter(classes_vocab(y))
        cls.train_on_batch(x_embed, y_onehot)

and the result :结果:

<ipython-input-30-3f8c38399ce9> in <module>()
      2     for x, y in tqdm(train_iterator.gen_batches(batch_size=64, 
      3                                            data_type="train")):
----> 4         x_embed = embedder(tokenizer(str_lower(x)))
      5         y_onehot = onehotter(classes_vocab(y))
      6         cls.train_on_batch(x_embed, y_onehot)

1 frames
/usr/local/lib/python3.6/dist-packages/deeppavlov/models/preprocessors/str_lower.py in str_lower(batch)
     31         return batch.lower()
     32     else:
---> 33         return list(map(str_lower, batch))

TypeError: 'float' object is not iterable

I have tried to change it to ep = int [float] but this doesn't work either.我试图将其更改为 ep = int [float] 但这也不起作用。

str_lower() takes either a string as an argument or an iterable type and calls .lower() on it. str_lower()将字符串作为参数或可迭代类型,并对其调用.lower() However in your code x is of type float.但是,在您的代码中, x是 float 类型。 So whenever list() is called with x as an argument it returns this error:因此,每当以x作为参数调用list() ,它都会返回此错误:

>>> list(3.14)
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    list(3.14)
TypeError: 'float' object is not iterable

So you either want to:所以你要么想:

  • Make sure x is a string确保x是一个字符串
  • Not call str_lower(x)不调用str_lower(x)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM