我正在尝试在 Python2.7(Ubuntu 16.04)中加载文件,并使用tqdm显示当前进度:
from tqdm import tqdm
import os
with open(filename, 'r') as f:
vectors = {}
tq = tqdm(f, total=os.path.getsize(filename))
for line in tq:
vals = line.rstrip().split(' ')
vectors[vals[0]] = np.array([float(x) for x in vals[1:]])
tq.update(len(line))
但它不起作用,ETA 太大了。它有点像这个例子,但我试图按照评论中所说的那样做。