Classifying Cat vs Dogs | Kaggle Top 1%, No Ensemble

  Рет қаралды 10,829

Aladdin Persson

Aladdin Persson

Күн бұрын

Пікірлер: 33
@AladdinPersson
@AladdinPersson 3 жыл бұрын
I'll do more Kaggles so let me know which ones you'd be most interested in
@nachiketkanore
@nachiketkanore 3 жыл бұрын
Do more computer vision
@harshraj22_
@harshraj22_ 3 жыл бұрын
Something involving transformers. Maybe use transformer from torch.nn as good tuts using that are very rare
@davidduran7541
@davidduran7541 3 жыл бұрын
Plant Pathology from Kaggle. Recently done it with Resnet and ViT. Perhaps a custom implementation from the later?
@suryaj2810
@suryaj2810 3 жыл бұрын
Personally, I would like Graph neural networks - not from scratch, but using the libraries already present and explain the intuiton behind network element in research papers. My aim is to understand and implement vectorNet paper from Google
@AIPlayerrrr
@AIPlayerrrr 3 жыл бұрын
Peking autonomous driving please. You will implement centernet in that competition.
@konradscheff
@konradscheff 3 жыл бұрын
Thank you so much for your videos, currently doing my Bachelor Thesis on Pix2Pix and you are bringing me up to speed in the perfect way. You get the perfect balance between focus to detail/explanations and still show the bigger picture of the Network architecture. Couldnt do it without your videos(at least not that fast:D)
@DanielWeikert
@DanielWeikert 3 жыл бұрын
From your experience. Are correlated features a problem for neural nets (overfitting,...) and should be removed upfront or not?
@statisticsplaybook
@statisticsplaybook 3 жыл бұрын
Thanks for the sharing!!
@odysseashlap
@odysseashlap 3 жыл бұрын
Do a biomedical kaggle competition they seem very interesting
@saltanatkhalyk3397
@saltanatkhalyk3397 3 жыл бұрын
Thank you! your solution is so cool.
@tomtom-mb7bf
@tomtom-mb7bf 3 жыл бұрын
So it is like you use good feature representation from pretrained net and use logistic regression as final output layer in the model , maybe you can try STN or IC-STN to better reduce scale and rotation variant , I think
@ccuuttww
@ccuuttww 3 жыл бұрын
I am not sure if u can just resize the picture into the bigger one and the source of the photo is another concern in those very old days, we use PCA to do classification it is very sensitive to the light source and the quality of the image Even in this modern time, photos come from the different camera can cause some error
@dishantd-wv1ls
@dishantd-wv1ls 3 жыл бұрын
error showing NotImplementedError: When subclassing the `Model` class, you should implement a `call` method. need solution for UNET created using Tensorflow
@mohdkashif7295
@mohdkashif7295 3 жыл бұрын
When you fine tuned efficient net, how did you unfreeze layers , did you use model.train(), because I am getting confused how pretrained model layers requires_grad set true.
@AladdinPersson
@AladdinPersson 3 жыл бұрын
Yes just model.train() run it for an epoch or two and then set it to model.eval() when extracting the features
@aminemami3549
@aminemami3549 2 жыл бұрын
Tried to run the code on collab and I got this error : CUDA out of memory. Tried to allocate 124.00 MiB (GPU 0; 11.17 GiB total capacity; 10.51 GiB already allocated; 80.81 MiB free; 10.58 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF
@harshraj22_
@harshraj22_ 3 жыл бұрын
The clipping thing, to ensure model isn't too confident about its prediction. How to do that clipping in torch.nn.Linear( ) ? Also, is it possible that your model is performing well, but clamping is reducing the score as it is reducing the probability ?
@AladdinPersson
@AladdinPersson 3 жыл бұрын
In PyTorch you'll just to torch.clip instead of np.clip. It's definitely possible there better values for clipping, I didn't test this extensively but the ones I found seemed to work a lot better than not having them
@ashwinjayaprakash7991
@ashwinjayaprakash7991 3 жыл бұрын
This is great!
@dontaskme1625
@dontaskme1625 3 жыл бұрын
I want to suggest VAEs as a topic
@charanbathula984
@charanbathula984 3 жыл бұрын
where can we get this code
@AladdinPersson
@AladdinPersson 3 жыл бұрын
hey, you can check out the code here: github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Kaggles/Dog%20vs%20Cat%20Competition
@stuartmccoll4749
@stuartmccoll4749 Жыл бұрын
How about just posting up the finished project ... your finished project ... so we can test it ourselves without having to go through this exercise ? Talk Talk Talk ... just provide the end solution so the world can test the results of the work discussed here. Is that a difficult thing to do ?
@AladdinPersson
@AladdinPersson Жыл бұрын
A lot of people like to understand the thought process and step through it. Code for all my videos is available on GitHub, here you go: github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Kaggles/Dog%20vs%20Cat%20Competition
@Andrew-he3hp
@Andrew-he3hp 3 жыл бұрын
Instead if just setting 1 and 0 as labels i think something like random number from range (0,0.2) for cats and (0.8,1) for dogs is a decent idea to try
@AladdinPersson
@AladdinPersson 3 жыл бұрын
Yeah pseudo labels would definitely be a good idea!
@seungwanhong3689
@seungwanhong3689 3 жыл бұрын
Thank you Aladdin Persson. It's helpful to watch your video to learn how deep learning workflow has to be done. As I am not a CS major person, I am glad that I could watch your videos, and learn from you!
PYTORCH COMMON MISTAKES - How To Save Time 🕒
19:12
Aladdin Persson
Рет қаралды 55 М.
When u fight over the armrest
00:41
Adam W
Рет қаралды 20 МЛН
Triple kill😹
00:18
GG Animation
Рет қаралды 18 МЛН
Cat vs. Dog Image Classification (CNNs) - Data Every Day #207
34:50
Gabriel Atkin
Рет қаралды 11 М.
Building our first simple GAN
24:24
Aladdin Persson
Рет қаралды 116 М.
EfficientNet Paper Walkthrough
25:50
Aladdin Persson
Рет қаралды 23 М.
Dogs vs Cats Image Classification (CNN) | Deep Learning | Python
1:01:44
How to build custom Datasets for Text in Pytorch
35:09
Aladdin Persson
Рет қаралды 32 М.