I'm plotting several metrics on a single Tensorboard scalar plot using writer.add_scalars()
. If possible, I'd like to set some of these metrics to use a dashed line rather than a solid line to help in visually distinguishing some important subgroupings in the data. Is it possible to use a dashed line in Tensorboard for certain data? I can't seem to find anything on this. Ideally, I could pass a mapping from names to linestyles so that I can add everything in a single dictionary.
Edit: In case it's relevant, I'm using PyTorch.