super-gradients
super-gradients copied to clipboard
Logging image bbox predictions during training TensorBoard or Weights and Biases
💡 Your Question
Is there a capability to log image predictions during training?
Moreover, it seems like using this code snippet only logs the results after the training is done in W&B
"sg_logger": "wandb_sg_logger", # Weights&Biases Logger, see class super_gradients.common.sg_loggers.wandb_sg_logger.WandBSGLogger for details
"sg_logger_params": # Params that will be passes to __init__ of the logger super_gradients.common.sg_loggers.wandb_sg_logger.WandBSGLogger
{
"project_name": "project_name", # W&B project name
"save_checkpoints_remote": True,
"save_tensorboard_remote": True,
"save_logs_remote": True,
"entity": "<YOUR-ENTITY-NAME>", # username or team name where you're sending runs
"api_server": "<OPTIONAL-WANDB-URL>" # Optional: In case your experiment tracking is not hosted at wandb servers
}
Versions
No response