Batch plot the log files exported from VisualDL using Matplotlib.
Project description
VDLdraw
Batch plot the log files exported from VisualDL using Matplotlib.
VisualDL | VDLdraw |
---|---|
How to install
It can be installed through pip
:
pip install vdldraw
How to use
from vdldraw import get_tags, vdl_draw_folder
## 1.View available tags
get_tags(log_folder)
# Output like this:
# ['Evaluate/F1', 'Train/loss', 'Evaluate/mIoU', 'Evaluate/Acc']
## 2.Make up tags to be displayed
tag_list = ['Evaluate/mIoU', 'Evaluate/Acc']
## 3.Save image
vdl_draw_folder(log_folder, tag_list, save_folder="output", mplstyle=None)
# Args:
# log_folder (str): Folder path where logs are saved.
# tag_list (list): List of tags to be displayed.
# save_folder (str, option): Folder path to save pictures. Default: "output".
# mplstyle (str/path): Matplotlib style system. Default: None(Styles defined using VDLdraw).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vdldraw-0.1.5.tar.gz
(14.1 kB
view hashes)
Built Distribution
vdldraw-0.1.5-py3-none-any.whl
(18.6 kB
view hashes)