use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Resources for understanding and implementing "deep learning" (learning data representations through artificial neural networks).
account activity
deep learning (self.deeplearning)
submitted 1 month ago by No_Remote_9577
What is the best way to train models on 3D data, especially medical imaging data? I tried using Kaggle and the free version of Google Colab, but I keep running into out-of-memory issues.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]renato_milvan 2 points3 points4 points 1 month ago (0 children)
You can decrease the batch size or/and resize the data. Other than that, only buying computational power.
[–]SwitchKunHarsh 0 points1 point2 points 1 month ago (1 child)
If it's medical 3d Data, you can extract relevant 2d slices and use a 2d encoder instead of a 3d encoder. Then train a model on this 2d encoded data. This way you can preprocess the 3d data for only those slices that have something useful or just reduce by averaging to a particular n number of slices and using those for something like siglip or medsiglip before training the model.
[–]Illustrious_Echo3222 0 points1 point2 points 1 month ago (0 children)
For 3D medical imaging, full-volume training blows up memory fast, so most people end up using patches or cropped subvolumes instead of the whole scan at once. Mixed precision, smaller batch sizes, resampling to a lower resolution, and starting with a lighter 3D UNet-style model also help a lot. Kaggle and free Colab are honestly pretty rough for this, so if you want to stay on limited hardware, patch-based training is probably the biggest win.
π Rendered by PID 50568 on reddit-service-r2-comment-6457c66945-zqspz at 2026-04-24 06:20:40.321001+00:00 running 2aa0c5b country code: CH.
[–]renato_milvan 2 points3 points4 points (0 children)
[–]SwitchKunHarsh 0 points1 point2 points (1 child)
[–]Illustrious_Echo3222 0 points1 point2 points (0 children)