You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No, it is not normal,
i find the time is spent follow the code, my H*W is 4096,it has to loop 4096 times, is it normal?
for i in range(H * W):
mean = train_outputs[0][:, i]
conv_inv = np.linalg.inv(train_outputs[1][:, :, i])
dist = [mahalanobis(sample[:, i], mean, conv_inv) for sample in embedding_vectors]
dist_list.append(dist)
when i test some images, whatever the number of images is 1 or 100,the time spent is so long. I want to know whether it is nomal
The text was updated successfully, but these errors were encountered: