You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest version, TensorBoard is not displaying during the training process. Specifically:
In the Projector tab, the message "No checkpoint was found" is displayed.
On the Home page, the message "No dashboards are active for the current data set" appears.
Actual Behavior
In the Projector tab, "No checkpoint was found" is displayed.
On the Home page, "No dashboards are active for the current data set."
Expected Behavior
TensorBoard should display the training metrics, and checkpoints should be found in the Projector tab. Dashboards should be active and show real-time updates on the Home page.
Steps to Reproduce
Train according to the provided example code and generate a local folder './full_embeddings_vis'
Even after adding tensorboard_callback = tf.keras.callbacks.TensorBoard(log_dir="./full_embeddings_vis", histogram_freq=1) to the callbacks parameter in model.fit(), TensorBoard still does not display properly. Is this feature no longer supported in the new version?
The text was updated successfully, but these errors were encountered:
Description
In the latest version, TensorBoard is not displaying during the training process. Specifically:
Actual Behavior
Expected Behavior
TensorBoard should display the training metrics, and checkpoints should be found in the Projector tab. Dashboards should be active and show real-time updates on the Home page.
Steps to Reproduce
Environment
TensorFlow version: 2.9.0
Python version: 3.10.14
OS: Windows11
Additional Information
Even after adding
tensorboard_callback = tf.keras.callbacks.TensorBoard(log_dir="./full_embeddings_vis", histogram_freq=1)
to thecallbacks
parameter inmodel.fit()
, TensorBoard still does not display properly. Is this feature no longer supported in the new version?The text was updated successfully, but these errors were encountered: