有効なメトリクス名
- 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"を使用する