Course Schedule II - DFS - Python
13:55
Group Anagrams - String - Python
6:19
Пікірлер
@Omar_Deepvision
@Omar_Deepvision 18 сағат бұрын
We need to cover knowledge transfer of this model to be reused in other networks. like using this network as a backbone to another network. ex: image segmentation using swintfv2 pretrained weights as encoder and do the decoding using UNET decoder
@rajmeetsingh1625
@rajmeetsingh1625 2 ай бұрын
thanks for explaination. I want to combine the SWIN with YOLOv8 any help on this topic.
@priyanshkanwar8599
@priyanshkanwar8599 2 ай бұрын
what happened to b in P2.3
@ai_hmp
@ai_hmp 2 ай бұрын
Thanks for noticing this. You are right the b should be added and instead of (-3) we will end up having (-1.8) as the input to the transfer functions.
@waqarmughal4755
@waqarmughal4755 3 ай бұрын
Thanks for the excellent videos. I have a question how can I train my custom data using that swin transformers
@SamarAshrafii
@SamarAshrafii 4 ай бұрын
Amazing video. Thanks a looooooot:)
@ai_hmp
@ai_hmp 3 ай бұрын
Thank you so much :)
@sarimhashmi9753
@sarimhashmi9753 4 ай бұрын
Thank you
@dslkgjsdlkfjd
@dslkgjsdlkfjd 5 ай бұрын
I have done a bunch of deep learning studying on youtube. This has to be the course with the most value I have ever seen. This course is amazing! Thank you so much for your contributions!
@ai_hmp
@ai_hmp 4 ай бұрын
Glad it was helpful!
@yiyang8216
@yiyang8216 7 ай бұрын
A question about the code: self.tau should be a tensor of size: "self.tau.shape = d". where d is the number of heads.
@ai_hmp
@ai_hmp 7 ай бұрын
Based on the paper, formula 2 explanaiton @3:18 , tau is a learnable scalar.
@iumemon
@iumemon 7 ай бұрын
The GitHub repo that you provided has PatchMerging not the PatchMerging_conv. Can you tell the difference between both and the need to use different methods?
@ChizkiyahuOhayon
@ChizkiyahuOhayon 8 ай бұрын
How can a Swin Transformer backbone output multi-level feature maps like ResNet?
@minute_machine_learning5362
@minute_machine_learning5362 8 ай бұрын
great explaination
@ai_hmp
@ai_hmp 8 ай бұрын
Thank you.
@harusakichiwa
@harusakichiwa 8 ай бұрын
Very well explained. Thank you for making such a good tutorial 👍
@ai_hmp
@ai_hmp 8 ай бұрын
Thank you.
@malathip4043
@malathip4043 8 ай бұрын
Can this be used on character images of 32*32*1 dataset
@mohamedsahli9935
@mohamedsahli9935 9 ай бұрын
thank u sir made it easy well explained can i use the final code as backbone to extract the initial features from the image and pass it to another transformer ?
@ai_hmp
@ai_hmp 9 ай бұрын
Sure, depending on your applicaiton that might be a good idea.
@rishabh2906
@rishabh2906 9 ай бұрын
hey can I use it to build my own ocr model?
@faizarehman2943
@faizarehman2943 9 ай бұрын
I need some help related to object detection using swin Transformer.Can you please share your email address.
@faizarehman2943
@faizarehman2943 9 ай бұрын
please send your email address. want to communicate related to object detection using swin transformer.
@buh357
@buh357 10 ай бұрын
This series was an excellent explanation of the Swin transformer; thank you for all your effort, What parameter or Defs should I change if the input is 3D images?
@ai_hmp
@ai_hmp 10 ай бұрын
Yes (Please take a look at Video Swin Transformer paper). Just consider your masking on the third dimension is gonna be different. Because when you shift in the X3 direction, all windows on the last element of X3 will be affected (Just draw on a piece of paper and you will see how the shift is in X3). Unfortunately, I don't have a bandwidth to make a video for 3D, but I'm sure you can do it as the logic is similar, at least my understanding.
@buh357
@buh357 9 ай бұрын
@@ai_hmp thank you for suggestion, and i have traind from scratch video swin transformer for 3D medical images, trainng size is aournd 500 3D images, but the model is not learning very well. do you have any suggestion or tips for trainning swin transformer from scratch? and also what kind of improvement i can do on video swin transformer? to be honest, i think swin transformer architecture is bit messy, any suggestion woul be appeciated, thank you in advance, sir.
@pratikkorat9324
@pratikkorat9324 10 ай бұрын
Hats off to your effort to explain this SWIN beast
@ai_hmp
@ai_hmp 10 ай бұрын
Thank you so much :)
@fayezalhussein7115
@fayezalhussein7115 10 ай бұрын
Dear i need your help in swin tansformer project, how i can contact with you ?
@RomeoKienzler
@RomeoKienzler 11 ай бұрын
Thanks so much!!
@ai_hmp
@ai_hmp 11 ай бұрын
You're welcome!
@RomeoKienzler
@RomeoKienzler 11 ай бұрын
Again, thanks so much, with your teaching it is impossible to NOT get it ;)
@ai_hmp
@ai_hmp 11 ай бұрын
Glad to hear that!
@RomeoKienzler
@RomeoKienzler 11 ай бұрын
Very nicely explained. Thanks so much!
@ai_hmp
@ai_hmp 11 ай бұрын
Thank you so much :)
@bourainour6135
@bourainour6135 11 ай бұрын
Thank you so much for creating this Swin Transformer tutorial series! Your clear explanations and well-structured content have been incredibly helpful in understanding the intricacies of Swin Transformers. Your effort is greatly appreciated, and I'm sure many others like me have benefited from your expertise. Keep up the fantastic work!
@ai_hmp
@ai_hmp 11 ай бұрын
Thank you so much :)
@payamtaheri1297
@payamtaheri1297 Жыл бұрын
Thank you for your perfect teaching in ditals
@ai_hmp
@ai_hmp Жыл бұрын
Thank you.
@wayneferguson2174
@wayneferguson2174 Жыл бұрын
Good Video, FYI I don't think the line to plot the predicted values is shown. For others reference, these two lines should allow the plots to work. plt.plot(X.numpy(), Y.numpy(), 'r+', label = 'Y') # This is shown in the video plt.plot(X.numpy(), Yhat.detach().numpy(), label = 'Yhat') # This needs to be added to plot the prediction line
@armasaaf6180
@armasaaf6180 Жыл бұрын
I really wish you would've taken this course further
@oesllelucena
@oesllelucena Жыл бұрын
Fablous series of videos. Jsut watched everything. Thank you for such valuable content!
@ai_hmp
@ai_hmp Жыл бұрын
Glad you like them!
@nsaicharanreddy2964
@nsaicharanreddy2964 Жыл бұрын
can you please explain how to add swin transformer in the backbone of the YOLO v5 model
@akramsalim9706
@akramsalim9706 Жыл бұрын
Thank you very much. You are the best
@ai_hmp
@ai_hmp Жыл бұрын
I am glad you found it helpful :)
@smarttaurian30
@smarttaurian30 Жыл бұрын
what about the segmenatation?
@ai_hmp
@ai_hmp Жыл бұрын
We only focused on the backbone in this series.
@BradNeuberg
@BradNeuberg Жыл бұрын
Very good, clear explanation, thanks for making this!
@ai_hmp
@ai_hmp Жыл бұрын
I am glad you found it helpful :)
@Krishnavandejagadguru-bo1ng
@Krishnavandejagadguru-bo1ng Жыл бұрын
How to trained the swin transformer for the rectangle image i.e 64x512x3
@ai_hmp
@ai_hmp Жыл бұрын
Thank you for your question. The window is still square but you will end up having less number of windows on height than width. The rest should be similar.
@agent2372
@agent2372 Жыл бұрын
your explanations are so clean and detailed. thanks very much
@ai_hmp
@ai_hmp Жыл бұрын
Thank you.
@anantmohan3158
@anantmohan3158 Жыл бұрын
Nicely Explained..! Please bring some latest SOTA and Benchmark models for Image Segmentation also.
@baojunjia
@baojunjia Жыл бұрын
This is the best video of mask in swin I've ever seen! Salute and hope to see more other useful videos
@ai_hmp
@ai_hmp Жыл бұрын
Thank you so much.
@MuhammadImran-s7v7d
@MuhammadImran-s7v7d Жыл бұрын
Great Video, Thank you so much! Can you please make a video for 3D SwinUNETR?
@TinhLe-hg4we
@TinhLe-hg4we Жыл бұрын
I appreciate the lesson. I wonder how you can get the formula for nonlinear regression because in the lesson I see some figures but the way to get formula from figure you do not mention.
@ai_hmp
@ai_hmp Жыл бұрын
Hello, we actually don't need a formula here. The concept of neutral network is to use a function estimator (model) to estimate the formula. Therefore, we use class NonlinearModel which is a Neural Network with 2 layers that servers as a fourmula.
@yiyang8216
@yiyang8216 Жыл бұрын
For self.upper_lower_mask and self.left_right_mask, can I use register_buffer instead of nn.Parameter and setting requires_grad=False?
@anantmohan3158
@anantmohan3158 Жыл бұрын
Hello AI OpenCourseWare, First of all, let me thank you for making such a wonderful playlist that covers each and everything in a very good and easy way. Secondly, I was struggling with the swin transformer and which was a big block in my research work. Now that I have understood many minute details and concepts from your videos, I am kind of comfortable now. I request you to please come up with more videos on computer vision topics. Also, please bring the latest research work implementation like Hypercorrelation squeeze network, 4D convolution, Swin4D, cost aggregation with transformer, and so on... Once again thank you for helping us out in understanding the code and minute concepts. Thank you..!
@ai_hmp
@ai_hmp Жыл бұрын
Thank you so much!
@SS-zq5sc
@SS-zq5sc Жыл бұрын
This is amazing hard work thank you so much.
@ai_hmp
@ai_hmp Жыл бұрын
Thank you :)
@saeed577
@saeed577 Жыл бұрын
Thanks for providing these videos🙏👌
@ai_hmp
@ai_hmp Жыл бұрын
Thank you so much :)
@saeed577
@saeed577 Жыл бұрын
What an amazing explanation👌👌, thanks a lot🙏🙏
@ai_hmp
@ai_hmp Жыл бұрын
Thank you!
@vaibhavthalanki7320
@vaibhavthalanki7320 Жыл бұрын
what will be the value of C if input image is 256x256, what all must i change for it work with 256x256x3 images
@ai_hmp
@ai_hmp Жыл бұрын
Hello, please try to use C=1 if you're using a grayscale image, please clarify more if I didn't understand your question well. Thank you.
@aiml66_bangerashashankchan81
@aiml66_bangerashashankchan81 Жыл бұрын
Just woww what a wonderful explanation loved it <3 you earned a sub mate!
@ai_hmp
@ai_hmp Жыл бұрын
Thank you :)
@manoschaniotakis3328
@manoschaniotakis3328 Жыл бұрын
thanks!!
@ai_hmp
@ai_hmp Жыл бұрын
Thank you!
@dddz7738
@dddz7738 Жыл бұрын
Appreciate your efforts! Thanks :)
@ai_hmp
@ai_hmp Жыл бұрын
Thank you!
@syedadzha362
@syedadzha362 Жыл бұрын
Amazing explaination. Thank you!
@ai_hmp
@ai_hmp Жыл бұрын
Thank you!
@fayezalhussein7115
@fayezalhussein7115 Жыл бұрын
you made swin transformer easy for us, thank you so much
@ai_hmp
@ai_hmp Жыл бұрын
Thank you so much!
@orhansivaz6780
@orhansivaz6780 Жыл бұрын
Best Explanation I've Ever Seen. Thank you so much sir.
@ai_hmp
@ai_hmp Жыл бұрын
Thank you so much!