Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-update-training-api-26.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()