We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can I apply batch size when predicting multible image plsease help me! thanks!
The text was updated successfully, but these errors were encountered:
@vuhungtvt142 you can try this code snippet:
from glob import glob import numpy as np import cv2 images_paths = glob("/*") images_array = [] for image_path in images_paths: image = cv2.imread(image_path)[:,:,::-1] images.append(image) images_array = np.asarray(images_array).reshape(len(images_paths), H, W, N_CHANNELS) predictions = model.predict(images_array)
Please let me know if this works! Also, close the issue if this solves the problem!!!:)
Sorry, something went wrong.
No branches or pull requests
how can I apply batch size when predicting multible image
plsease help me!
thanks!
The text was updated successfully, but these errors were encountered: