加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TensorBoard_learn_2.py 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-05-12 11:01 . first commit
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
@Time : 2022/4/26 10:06
@Author : Albert Darren
@Contact : 2563491540@qq.com
@File : TensorBoard_learn_2.py
@Version : Version 1.0.0
@Description : TODO
@Created By : PyCharm
"""
from torch.utils.tensorboard import SummaryWriter
from PIL import Image
import numpy as np
img_path = "Data/train/ants_image/5650366_e22b7e1065.jpg"
img_pillow = Image.open(img_path)
img_arr = np.array(img_pillow)
# tensorboard --logdir=logs --host=127.0.0.1
writer = SummaryWriter(log_dir="logs")
writer.add_image(tag="ants0", img_tensor=img_arr, global_step=1, dataformats="HWC")
writer.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化