I'll do more Kaggles so let me know which ones you'd be most interested in
@nachiketkanore3 жыл бұрын
Do more computer vision
@harshraj22_3 жыл бұрын
Something involving transformers. Maybe use transformer from torch.nn as good tuts using that are very rare
@davidduran75413 жыл бұрын
Plant Pathology from Kaggle. Recently done it with Resnet and ViT. Perhaps a custom implementation from the later?
@suryaj28103 жыл бұрын
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
@AIPlayerrrr3 жыл бұрын
Peking autonomous driving please. You will implement centernet in that competition.
@konradscheff3 жыл бұрын
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)
@DanielWeikert3 жыл бұрын
From your experience. Are correlated features a problem for neural nets (overfitting,...) and should be removed upfront or not?
@statisticsplaybook3 жыл бұрын
Thanks for the sharing!!
@odysseashlap3 жыл бұрын
Do a biomedical kaggle competition they seem very interesting
@saltanatkhalyk33973 жыл бұрын
Thank you! your solution is so cool.
@tomtom-mb7bf3 жыл бұрын
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
@ccuuttww3 жыл бұрын
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-wv1ls3 жыл бұрын
error showing NotImplementedError: When subclassing the `Model` class, you should implement a `call` method. need solution for UNET created using Tensorflow
@mohdkashif72953 жыл бұрын
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.
@AladdinPersson3 жыл бұрын
Yes just model.train() run it for an epoch or two and then set it to model.eval() when extracting the features
@aminemami35492 жыл бұрын
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_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 ?
@AladdinPersson3 жыл бұрын
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
@ashwinjayaprakash79913 жыл бұрын
This is great!
@dontaskme16253 жыл бұрын
I want to suggest VAEs as a topic
@charanbathula9843 жыл бұрын
where can we get this code
@AladdinPersson3 жыл бұрын
hey, you can check out the code here: github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Kaggles/Dog%20vs%20Cat%20Competition
@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 Жыл бұрын
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-he3hp3 жыл бұрын
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
@AladdinPersson3 жыл бұрын
Yeah pseudo labels would definitely be a good idea!
@seungwanhong36893 жыл бұрын
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!