AI Training Dashboards
Informational Graphics
Trained Samples
The number of samples the model sees and learns from during training.
Validated Samples
The number of samples (that the model has never seen before) on which the model’s performance is evaluated.
Training Time
The amount of time taken to train the model.
Training Epochs
The number of passes through the entire dataset the model made during training.
Training Parameters
The number of individual values forming the model’s prediction process, that the model had to learn “trained” values for. (More parameters mean a more “complex” model, meaning more training is needed than a model with fewer parameters.)
Model Layers
The number of layers within the model architecture.
Doughnut Charts
AUC
A metric for gauging a model’s tendency to make true-positive predictions over false-positive predictions. (a value of 0.5 means an equal number of true-positives vs. false-positives; a value of 1.0 means no false-positives.)
Recall
The fraction of positive results (e.g. true cases of spam in a spam detection problem that the model correctly identified.) (e.g. fraction of all true-spam that the model found.)
Accuracy
The fraction of positive model predictions that were correct. (e.g. fraction of all true-spam predictions the model made that were actually spam.)
Precision
The fraction of all cases the model correctly predicted.
Line Charts
Loss
The measure of how “wrong” the model’s predictions are. It is used by the model to correct itself during training.
Accuracy
The measure how likely the model’s predictions are. It is used by the model to correct itself during training.