How to use tensorboard on the model i created?

I trained the BERT model by changing the rusentiment conversational config file but my model is overfitting and now I would like to use TensorBoard to visualize the model’s performance. However, since I did not code anything instead I just modified the config file, how can I use TensorBoard with it?

1 Like

Hi!

Logging to Tensorboard could be enabled by adding:

"tensorboard_log_dir": "your_path_to_logs",

to train section of your configuration file.

1 Like