So hypothetical situation is as follows: Let's say I make a neural net that can determine the length of an object in an image in centimeters. I also have an actual length for that object.
My goal: Determine if the length the neural net predicted is significantly different from the actual object length. Or, perhaps more formally, null hypothesis = that the predicted lengths (from neural net) are not significantly different from actual lengths.
My initial guess for figuring out how to best make a statistical test for this is to get the difference between the predicted measurement and the actual measurement for each sample, and see those differences are significantly different from 0 via a one-sample t-test; however, I am unsure if this is actually appropriate or not. But then again, I am unsure if this is appropriate since a 1 sample t test seems to talk about population means and I don’t have that here.
I’ve also thought about doing a paired t test but I am also unsure if that’s appropriate here since I think paired t tests tend to be done after some treatment/procedure being done and I don’t think that’s similar to my scenario. Does anyone have any advice?
To give some example points in this situation:
Item 1: predicted length=5.1cm; actual length=5.0cm.
Item 2: predicted length=50.5cm; actual length=50.9cm.
Item 3: predicted length=0.5cm; actual length=1.0cm.