Visualize the training curve from the *.csv file (tensorboard format).
- Custom labels
- Curve smoothing
- Support for multiple curves
tensorboard | ours |
---|---|
tensorboard | ours |
---|---|
$ pip install -r requirements.txt
And then,
from curve_vis import CurveVis
cv = CurveVis(
csv_file = ["a.csv", "b.csv"]
labels = ["curve1", "curve2"]
)
cv.show()