Submitted by AutoModerator t3_100mjlp in MachineLearning
debrises t1_j3irf9s wrote
Reply to comment by CygnusX1 in [D] Simple Questions Thread by AutoModerator
>What are techniques or best practices for detecting/segmenting large objects in high resolution images? Some problems I run into are training with large image chip sizes
The first thing that came to my mind was gradient accumulation if you have limited GPU memory. Fitting an image of that size on a single GPU could result in a very small batch, which is not so good for training speed and stability.
PyTorch lightning offers such a feature if you're using PyTorch.
Viewing a single comment thread. View all comments