Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

API를 사용하면 완료된 run에 할당된 그룹을 변경할 수 있습니다. 이 기능은 웹 UI에서는 제공되지 않습니다. 다음 코드를 사용해 그룹을 업데이트하세요:
import wandb

api = wandb.Api()
run = api.run("<ENTITY>/<PROJECT>/<RUN_ID>")
run.group = "NEW-GROUP-NAME"
run.update()

Runs