유효한 메트릭 이름
- 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"사용