Metrics available during training?

when using callbacks, I can fill it with some metrics such as filename=‘{epoch}-{val_loss:.2f}-{other_metric:.2f}’

Is there documentation that lists all the metrics available?

PyTorch doesn’t provide any methods to compute metrics (you could of course calculate them manually), but you could use e.g. TorchMetrics or other libraries providing these methods.