tensorflow
橘的皮瓜着披。
这个作者很懒,什么都没留下…
展开
-
tensorflow生成日志文件
tensorflow生成日志文件1、在代码中加入这一段:设定日志等级、指定日志文件名称等import logging# get TF loggerlog = logging.getLogger('tensorflow')log.setLevel(logging.DEBUG)# create formatter and add it to the handlersformatter ...原创 2018-12-30 11:42:05 · 7087 阅读 · 0 评论 -
tensorflow tensor或numpy数组打印出全部值
tensorflow tensor或numpy数组打印出全部值1、加入以下代码import numpy as np np.set_printoptions(threshold=np.inf)parser = argparse.ArgumentParser()原创 2018-12-30 11:46:06 · 3362 阅读 · 1 评论 -
tensorflow中设置保存checkpoint的最大数量
tensorflow中设置保存checkpoint的最大数量1、例如: # Set up a RunConfig to only save checkpoints once per training cycle. run_config = tf.estimator.RunConfig(save_checkpoints_secs=1e9,keep_checkpoint_max = 10)...原创 2018-12-30 11:49:59 · 4402 阅读 · 0 评论