Missing logger folder Warning
due to isdir
of fsspec
#5052
Labels
Milestone
Missing logger folder Warning
due to isdir
of fsspec
#5052
🐛 Bug
I linked a folder to
PROJECT_ROOT/lightning_logs
, butpytorch-lightning
showed the warningMissing logger folder: PROJECT_ROOT/lightning_logs
, and then wrote thetensorboard
event log file toPROJECT_ROOT/lightning_logs/version_0
, instead of creating a newversion_xxx
.I think this is because in this case,
fsspec
'sisdir
returnsFalse
, while pythonos.path.isdir
returnsTrue
. Please refer to https://github.com/PyTorchLightning/pytorch-lightning/blob/master/pytorch_lightning/loggers/tensorboard.py#L241 for details.The text was updated successfully, but these errors were encountered: