Python解决tqdm ‘module‘ object is not callable
Posted Better Bench
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python解决tqdm ‘module‘ object is not callable相关的知识,希望对你有一定的参考价值。
问题
tqdm是显示数据处理进度条
使用import tqdm报错 ‘module’ object is not callable
import tqdm
datafields = [("text", TEXT), ("label", LABEL)]
train_examples= []
for text, label in tqdm(zip(train['text'], train['label'])):
train_examples.append(data.Example.fromlist([text, label], datafields))
train_data = data.Dataset(train_examples, datafields)
解决
import使用方法不对,应该使用from tqdm import tqdm
from tqdm import tqdm
以上是关于Python解决tqdm ‘module‘ object is not callable的主要内容,如果未能解决你的问题,请参考以下文章