摘要:
This example shows how to do image classification from scratch(抓, 挠), starting from JPEG image files on disk, without leveraging pre-trained weights o 阅读全文
摘要:
tqdm 是一个快速,可扩展的Python进度条 可以在 Python 长循环中添加一个进度提示信息,用户只需要封装任意的迭代器 tqdm(iterator)。 使用pip就可以安装。 from tqdm import tqdm for i in tqdm(range(1000)): #do som 阅读全文