In this video I train a model to solve this competition from scratch, from end to end, using PyTorch
https://www.youtube.com/watch?v=yq2fDQ4waY0
Enjoy^_^
Note: I have something wrong in Dataset:
Instead of :
y = self.file['score'][index]
if y == 1 : y = [1,0,0]
if y == 2 : y = [0,1,0]
else : y = [0,0,1]
It should be
y = self.file['score'][index]
if y == 0 : y = [1,0,0]
if y == 1 : y = [0,1,0]
else : y = [0,0,1]
Not going to lie, You are a blessing to this Zindian community. Through you a lot of people are going to learn. Thank you
It's my pleasure.
I am so new to Zindian community trying to learn new stuff and share my knowledge with all.
Hello
thanks for sharing the video.
How can I do if I want to apply different augmentations to the images?
In the video, the same transformation is applied to both images.
Thanks