junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
18 stars 2 forks source link

Tools Pytorch VIS #171

Open junxnone opened 4 years ago

junxnone commented 4 years ago

Visualization 可视化

Reference

Brief

Package Name Description
torch.utils.tensorboard.writer.SummaryWriter pytorch 支持 Tensorboard
hiddenlayer 网络结构图绘制
tensorboardX 类似 tensorboad 工具
pytorchviz

torch.utils.tensorboard.writer.SummaryWriter

Function Description
add_scalar 添加一个标量
add_scalars 添加一组标量
add_histogram 添加直方图
add_image 添加一张图片
add_images 添加一组图片
add_figure 添加 matplotlib figure
add_video 添加 video
add_audio 添加 audio
add_text 添加文本
add_graph 添加 model
add_embedding 添加 embedding projector
add_pr_curve 添加 precision recall curve
add_custom_scalars 特定标量, training 之前或者之后调用
add_mesh 添加 meshes or 3D point clouds
add_hparams 添加 超参数
flush 保存 event 到 硬盘
close
junxnone commented 4 years ago

junxnone/aiwiki#168