tarrade / proj_multilingual_text_classification

Explore multilingal text classification using embedding, bert and deep learning architecture
Apache License 2.0
5 stars 2 forks source link

How can we plot the model history in steps? #6

Closed vluechinger closed 4 years ago

vluechinger commented 4 years ago

Possible approaches:

tarrade commented 4 years ago

it seems that Tensorboard is displaying what is provided by Keras.

what is working is to create a callback and store acc and loss per step and reuse some plot function to create the plot. This is implemented in notebook/00-Test/08_SST2_Huggingface_model.ipynb

this is a good solution but we need something in TensorBoard. Opening a separate issue

image (I need to fix the legend from epoch --> step)