inferno-pytorch / inferno

A utility library around PyTorch
Other
244 stars 41 forks source link

TensorboardLogger defaults don't make sense #166

Closed constantinpape closed 5 years ago

constantinpape commented 5 years ago

There are some issues with the TensorboardLogger default arguments. All log_X_every get the default argument None, which will be mapped to once every iteration. This is problematic:

Probably the best solution is to change the handling of None for log_images and log_histogram

constantinpape commented 5 years ago

Thanks @ottogin for making me aware of this.