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
_vectorize_images(image_dir, image_size, preprocessor, model, vector_file, batch_size)
24 print("{:d} vectors generated".format(num_vecs))
25 image_vector = ",".join(["{:.5e}".format(v) for v in vectors[i].tolist()])
---> 26 fvec.write("{:s}\t{:s}\n".format(image_batch[i], image_vector))
27 num_vecs += 1
28 print("{:d} vectors generated".format(num_vecs))
TypeError: a bytes-like object is required, not 'str'_**
I am trying to fit your code in a classification problem using transfer learning but getting this error.
Could you please tell why is that and how to rectify it?
The text was updated successfully, but these errors were encountered:
in **
I am trying to fit your code in a classification problem using transfer learning but getting this error.
Could you please tell why is that and how to rectify it?
The text was updated successfully, but these errors were encountered: