somebodyenjoy
somebodyenjoy OP t1_iyv79r7 wrote
Reply to comment by SeucheAchat9115 in [D] Best object detection architecture out there in terms of accuracy alone by somebodyenjoy
I understand, I was asking if we use something like an alexnet and train it on a specific object, like a dog or not detector. Then make this detector go around the entire image in a brute-force manner, would that be more accurate than the object detector models right now
somebodyenjoy OP t1_iyv5zlq wrote
Reply to comment by SeucheAchat9115 in [D] Best object detection architecture out there in terms of accuracy alone by somebodyenjoy
Maybe in terms of speed, but what about accuracy? Wouldn’t it make sense that a classifier going around the image would be more accurate? Is there any research or articles comparing the modern algorithms to sliding windows
somebodyenjoy OP t1_iyv3jls wrote
Reply to comment by SeucheAchat9115 in [D] Best object detection architecture out there in terms of accuracy alone by somebodyenjoy
What would be the accuracy of the brute-force approach, i.e. sliding window approach? Would the accuracy be better than all others?
somebodyenjoy OP t1_iyuz8tx wrote
Reply to comment by SeucheAchat9115 in [D] Best object detection architecture out there in terms of accuracy alone by somebodyenjoy
In this case, what would be the better option?
Submitted by somebodyenjoy t3_zc24rg in MachineLearning
somebodyenjoy OP t1_iydqmu0 wrote
Reply to comment by HiPattern in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
This is perfect, I won’t have to invest in additional RAM. Thanks for the tip!
somebodyenjoy OP t1_iycyur2 wrote
Reply to comment by HiPattern in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
I do the same using numpy files, but they only let me load the whole data which is too big in the first place. Tensorflow let’s us load in batches huh, I’ll look into this
somebodyenjoy OP t1_iycwvf4 wrote
Reply to comment by HiPattern in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
Very interesting, but I wanted the model to preprocess the data only once. This way, it’ll preprocess at every epoch
somebodyenjoy OP t1_iycub7d wrote
Reply to comment by Ttttrrrroooowwww in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
I haven’t heard of mem mapping, seems like something I should look into, thanks!
somebodyenjoy OP t1_iyclml5 wrote
Reply to comment by Alone_Bee_6221 in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
I’ve changed the tuner class before. I should try this when I run into this issue
somebodyenjoy OP t1_iycl8b8 wrote
Reply to comment by incrediblediy in If the dataset is too big to fit into your RAM, but you still wish to train, how do you do it? by somebodyenjoy
I meant RAM. I know I can reduce the batch size for VRAM. I’ve solved problems by loading the whole dataset into the RAM and training it. But your answer is interesting as well
somebodyenjoy OP t1_iy2a1r9 wrote
Reply to comment by --dany-- in Best GPU for deep learning by somebodyenjoy
Exactly what I was thinking. Thanks!
somebodyenjoy OP t1_iy23k2m wrote
Reply to comment by --dany-- in Best GPU for deep learning by somebodyenjoy
I do hyperparameter tuning too, so the same model will have to train multiple times. More times the better, as I can try more architectures. So speed is important. But you’re saying that 4090 is not much better than 3090 in terms of speed huh
somebodyenjoy OP t1_iy20svg wrote
Reply to comment by --dany-- in Best GPU for deep learning by somebodyenjoy
Hi, thanks for your reply. So 2 3090s will be faster than one 4090, correct?
Submitted by somebodyenjoy t3_z6kr2n in deeplearning
somebodyenjoy OP t1_iyv8ila wrote
Reply to comment by SeucheAchat9115 in [D] Best object detection architecture out there in terms of accuracy alone by somebodyenjoy
You mean to say they can do better in terms of accuracy even tho they detect in a single forward path?