W&B 의 메트릭 이름은 UI 에서 원활하게 정렬하고 필터링할 수 있도록 GraphQL 네이밍 규칙을 따라야 합니다.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.
유효한 메트릭 이름
- Allowed characters: Letters (A-Z, a-z), digits (0-9), and underscores (_)
- Starting character: Names must start with a letter or underscore
- Pattern: Metric names should match
/^[_a-zA-Z][_a-zA-Z0-9]*$/
예시
Valid metric names:권장 해결 방법
유효하지 않은 문자를 언더스코어( _ )와 같은 유효한 문자로 대체하세요:"test acc"대신"test_acc"사용"loss-train"대신"loss_train"사용"acc,val"대신"acc_val"사용