Answer (Choose 1 answer)
A You are building a 3-class object classification and localization algorithm. The classes are:pedestrian (c=1), car (c=2), motorcycle (c=3). What should y be for the image below? Remember that "?" means "don't care", which means that the neural network loss function won't care what the neural network gives for that component of the output. Recall y=[pc.bx.by.bh.bw.c1.c2.c3].
A. y=[0.1.?.?.?.?.?.?]
B. y=[0.?.?.?.?.?.?.?]
C. y=[1,?.?.?.??.?.?]
D. y=[1.1.?.?.?.?.?.?]