I’m trying to access artifact versions in pytorch lightning callback and I’m still getting wandb.errors.CommError: Permission denied to access (...)
exception. However, when I run the same code from standalone script or even in the same codebase but going step by step using debugger it works fine. I suppose it’s somehow caused by the fact it’s ran from the callback. How can I fix it?
The minimum callback code below:
import pytorch_lightning as pl
import wandb
class MyCallback(pl.callbacks.Callback):
def __init__(
self,
) -> None:
self._artifact_type = "my_type"
self._artifact_name = "my_name"
self._api = wandb.Api(
overrides={"entity": wandb.run.entity, "project": wandb.run.project}
)
def on_validation_end(
self, trainer: pl.Trainer, pl_module: pl.LightningModule
) -> None:
self._log_artifact(pl_module)
self._remove_old_versions()
def _log_artifact(self, pl_module: pl.LightningModule) -> None:
...
def _remove_old_versions(self) -> None:
for v in self._api.artifact_versions(self._artifact_type, self._artifact_name):
if "latest" not in v.aliases:
v.delete()