Observe that the Trainer always reports the error "WandbCallback requires wandb to be installed. Runpip install wandb." Expected behavior I would have expected to disablewandb, but instead setting theWANDB_DISABLEDenvironment variable completely prevents the user from usingwandb. After a bit of digg...
Describe the bug wandb.Artifact() doesn’t work in “disabled” WANDB_MODE since 0.13.8 with FileNotFoundError: [Errno 2] No such file or directory Reason cache_dir_base is added in 0.13.8, but it doesn’t return a valid path, instead a clas...
run = wandb.init(config=defaults, resume=True) config = run.config # For testing purposes only, assert if we didnt resume if args.test_must_resume: if args.test_must_resume and not wandb.run.disabled: assert wandb.run.resumed (X_train, y_train), (X_test, y_test) = fashion_mnist....