Closed NickleDave closed 3 years ago
when logdir2csv is called outside of the log directory, it causes a bug that doesn't get triggered when logdir is the current working directory
logdir2csv
logdir
this is because the path for final filename generated gets duplicated: https://github.com/NickleDave/visual-search-nets/blob/2248c341635908994a11491df34f534501766eb8/src/searchnets/tensorboard.py#L80
csv_path = events_file.parent.joinpath(events_file.stem + '.csv') df.to_csv(logdir.joinpath(csv_path))
it should instead be something like
csv_path = events_file.stem + '.csv' df.to_csv(logdir.joinpath(csv_path))
when
logdir2csv
is called outside of the log directory, it causes a bug that doesn't get triggered whenlogdir
is the current working directorythis is because the path for final filename generated gets duplicated: https://github.com/NickleDave/visual-search-nets/blob/2248c341635908994a11491df34f534501766eb8/src/searchnets/tensorboard.py#L80
it should instead be something like