Oscar Skean
Oscar Skean
Hi @nate-wandb, I tried setting `ntasks=1`, and while that solves the problem of `wandb agent` being called too much, it causes issues with Pytorch Lightning. Per [this doc](https://lightning.ai/docs/pytorch/stable/clouds/cluster_advanced.html), when using...
Ok I figured out a way to do this. It's really ugly but it works. Sweep Configuration ``` project: slurm_test name: my_sweep program: main.py command: - ${env} - echo **this...
Hi @nate-wandb, yes please make a feature request for ${run_id}. It would be great if it adds the run_id as an argument to the command such as `python3 main.py --random-arg...
Check that you're downloading from the model file with the correct link. I had this problem and noticed I was downloading "https://huggingface.co/lllyasviel/ControlNet/blob/main/models/control_sd15_seg.pth" rather than "https://huggingface.co/lllyasviel/ControlNet/resolve/main/models/control_sd15_seg.pth". The former produced your issue,...
Seconding this feature request. I just spent a decent chunk of time tracking down why Pylance kept crashing. It would be great to have a checkbox option to disable any...
@rozariwang See if you can switch your docker image to one with NVCC installed by default, like one from https://hub.docker.com/r/pytorch/pytorch. I just ran into a similar issue and noticed that...
Great! I'll try to submit a few PRs this weekend
Hey @vturrisi! I just submitted a PR [here](https://github.com/vturrisi/solo-learn/pull/390) that implements FroSSL. I'll start with this one for now, and I'll do the others once I figure out how the CI...