What hardware specifications are generally required for AI/ML/DL Submitted by AnimeFreak888 t3_10sw8k8 on February 3, 2023 at 9:44 PM in deeplearning What hardware specifications are generally required for AI/ML/DL 10 comments 2
suflaj t1_j73xnvw wrote on February 3, 2023 at 10:03 PM #1,716,325 A CUDA-capable GPU with compute capability generally over 3.0 and an OS that supports the said nvidia GPU and CUDA drivers. 9
Appropriate_Ant_4629 t1_j75sc61 wrote on February 4, 2023 at 7:40 AM #1,719,665 Note that some models are extremely RAM intensive; while others aren't. A common issue you may run into are errors like RuntimeError: CUDA out of memory. Tried to allocate 1024.00 MiB (GPU 0; 8.00 GiB total capacity; 6.13 GiB already allocated; 0 bytes free; 6.73 GiB reserved in total by PyTorch), and it can be pretty tricky to refactor models to work with less RAM than they expect (see examples in that link). 1
ilolus t1_j763eyt wrote on February 4, 2023 at 10:20 AM #1,720,083 Replying to Appropriate_Ant_4629 (#1,719,665) That's VRAM, not RAM. It's rare to have a problem with RAM limits nowadays. 6
Some-Assistance-7812 t1_j764ulk wrote on February 4, 2023 at 10:41 AM #1,720,141 You need raw power!! In terms of CPU, number of cores matter more than CPU speed In terms of RAM, more RAM capacity is preferably. (Generally more than twice the VRAM of your GPU) In terms of GPU, VRAM is most essential! 2
foxracing4500 t1_j77rdn3 wrote on February 4, 2023 at 6:50 PM #1,723,315 Depends on your budget? How much are you looking to spend? 1
harry-hippie-de t1_j78b01o wrote on February 4, 2023 at 9:09 PM #1,724,254 There's a difference in training and inference. Hardware requirements for training are larger. 1
[deleted] t1_j7d37wj wrote on February 5, 2023 at 10:17 PM #1,731,587 Replying to Appropriate_Ant_4629 (#1,719,665) [deleted] 1
[deleted] t1_j7d3jfx wrote on February 5, 2023 at 10:20 PM #1,731,600 Replying to Some-Assistance-7812 (#1,720,141) [deleted] 1
[deleted] t1_j7d3s2t wrote on February 5, 2023 at 10:21 PM #1,731,611 Replying to Appropriate_Ant_4629 (#1,719,665) [deleted] 1
suflaj t1_j73xnvw wrote
A CUDA-capable GPU with compute capability generally over 3.0 and an OS that supports the said nvidia GPU and CUDA drivers.