+
+ Filename
+ Truth
+ Prediction
+ Score
+ Latency
+
+ {wrongSamples.map((sample) => (
+
+
+ {sample.filename}
+ {sample.failureReason ? {sample.failureReason} : null}
+
+ {labelText(sample.groundTruthLabel)}
+ {labelText(sample.predictedLabel)}
+ {sample.score === null ? 'N/A' : sample.score.toFixed(3)}
+ {sample.latencyMs === null ? 'N/A' : `${sample.latencyMs}ms`}
+
+ ))}
+ {!wrongSamples.length ?
No wrong or failed samples for the selected run.
: null}
+
+