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"を使用する