Explore an interactive machine learning visualization dashboard. Analyze your model’s performance efficiently by uploading your results in JSON or CSV format, or copy-paste directly. Use the following format:
{
"y_true": [0,1,2,0,1,2,0,1],
"y_pred": [0,2,1,0,1,2,1,0],
"epoch": [1,2,3,4,5,6,7,8],
"loss": [1.2,0.9,0.7,0.6,0.5,0.4,0.3,0.2],
"val_loss": [1.1,0.95,0.8,0.7,0.65,0.6,0.55,0.5],
"accuracy": [0.6,0.7,0.78,0.82,0.86,0.89,0.91,0.93],
"val_accuracy": [0.62,0.69,0.76,0.80,0.83,0.86,0.88,0.90]
}
After uploading or pasting, select the type of visualization you want. The dashboard will generate interactive charts for confusion matrices, training curves, dataset distributions, and model evaluation metrics.