Report: http://share.yellowrobot.xyz/quick/share-2022-04-11-65861.html
Github: https://github.com/zirismetov/AI_tutorial_tasks/tree/master/32_PPO_HPC
Youtube Video
Jamboard: https://jamboard.google.com/d/1ofo6GOikHjjmiKtoeM9p8uKbA24LxXjZ-YmyjxC4m8I/edit?usp=sharing
Preparation materials: https://towardsdatascience.com/contrastive-loss-explaned-159f2d4a87ec https://gombru.github.io/2019/04/03/ranking_loss/
Implement classification model based on template, complete TODOs, do not use loss function for test dataset, because it has different classes.
Implement Contrastive Loss and Center of the mass classification
using template from 1.2. task
Template: http://share.yellowrobot.xyz/1636095494-dml-course-2021-q4/1_3_contrastive_homework_template.py.zip
Add on top of embedding z, projection to logits and calculate CCE composite loss. Often in practice combination of both loss functions work better.
Implement following structure of model:
http://share.yellowrobot.xyz/1636095494-dml-course-2021-q4/homework_1_4.png
For encoder implement pre-trained DenseNet from torchvision
Change metric for distances from L2 Euclidean distance to Cosine Distance using following formula (change it for training and also for class evaluation/matching): http://share.yellowrobot.xyz/1636095494-dml-course-2021-q4/cosine_dist.png
More on metric functions:
Train on Google Colab or on VeA GPU nodes, submit code and screenshots of results
Cosine similarity range: −1 meaning exactly opposite, 1 meaning exactly the same, 0 indicating orthogonality.
cosine distance