As a researcher and model user, I want to know about the training results of the model, so that I can properly assess the model before using it in my application.
Put this into writing in the model output description.
Add loss and accuracy measures for both training and validation datasets, ideally per epoch.
"mlm:training": {
loss_function: "CrossEntropyLoss",
loss_training: [0.4, 0.2, 0.175],
loss_validation: [0.45, 0.22, 0.19],
accuracy_training: [0.6, 0.8, 0.9],
accuracy_validation: [0.6, 0.79, 0.85]
}
Please give some feedback about other training info or metrics that could be included here.
I am happy to submit a PR if this is desirable.