wandb launch-agent <your-selected-project-name>
-q <queue-name>
to your command. You should see that the agent picks up the run and builds a container with your edits to the run, just as before.wandb launch
supports running new runs (i.e. runs not based on an existing wandb run) from both remote git repositories or local directories.wandb launch https://github.com/user/repo
. We require that the repo contain either a requirements.txt
or environment.yml
configuration file for dependencies, and the code should be already instrumented with wandb for us to track it as normal.wandb launch path/to/local
. As with git repos, we also require a requirements.txt
or environment.yml
file at the root of the provided path. Queueing is not currently supported for launching from a local directory.--entry-point
or -E
flag.wandb launch-agent --queues <queue-name> <project>
--queues q1,q2,q3
. If you don't specify a queue with the --queues
flag, the agent will run jobs from the default queue for the project.