Forwarded data not Labelled automatically

I am uploading to edge impulse and my data isn’t automatically labelled. Is there something I need to do apart from filling the queue with the label like this:
q = queue.Queue()

for i in range(num_samples_train):

  q.put((X_train[i], y_train[i]))

Hi @professor,

y_train should contain your labels, which will be reflected in your Studio project after you upload. Does that help to answer your question?

1 Like