加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
utils.py 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
jhyuklee 提交于 2017-11-02 20:15 . preprocess done
import numpy as np
from tensorboardX import SummaryWriter
def progress(_progress):
bar_length = 5 # Modify this to change the length of the progress bar
status = ""
if isinstance(_progress, int):
_progress = float(_progress)
if not isinstance(_progress, float):
_progress = 0
status = "error: progress var must be float\r\n"
if _progress < 0:
_progress = 0
status = "Halt...\r\n"
if _progress >= 1:
_progress = 1
status = ""
block = int(round(bar_length * _progress))
text = "\r\t[%s]\t%.2f%% %s" % (
"#" * block + " " * (bar_length-block), _progress * 100, status)
return text
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化