Metric names in W&B must follow GraphQL naming conventions to ensure they can be properly sorted and filtered in the UI.Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-mintlify-style-consistency-1776283399.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Valid metric names
- 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]*$/
Examples
Valid metric names:Recommended solution
Replace invalid characters with valid characters such as underscores:- Instead of
"test acc", use"test_acc" - Instead of
"loss-train", use"loss_train" - Instead of
"acc,val", use"acc_val"
Experiments Metrics