Replies: 1 comment 2 replies
-
Just to be clear, you are not using a GPU at all, right? Also, I'm assuming these are relatively large GeoTIFFs and that we are talking about the utilization during prediction on a single such image. I don't know if CPU utilization scales the same way as GPU utilization, but you might try increasing the batch size. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a working example or suggested approach to running predictions locally using 100% CPU? I am only able to achieve 40-50% cpu usage when running predictions across several images. My script is looping over an array of input image paths and executing the prediction one at a time like this:
predictor.predict([in_image_path], output_predict_path)
The pattern I am using is similar as in this issue.
Beta Was this translation helpful? Give feedback.
All reactions