1. Homepage
  2. Programming
  3. COMP90086 Computer Vision - Project: Totally-Looks-Like Challenge

COMP90086 Computer Vision - Project: Totally-Looks-Like Challenge

Engage in a Conversation
University of MelbourneAustraliaCOMP90086Computer VisionPythonTotally-Looks-Like Challenge

COMP90086 Computer Vision, 2023 Semester 2
CourseNana.COM

Totally-Looks-Like Challenge CourseNana.COM

Group (teams of 2)
7pm, 20 Oct 2023
Source code and written report (as .pdf)
The assignment will be marked out of 30 points, and will contribute 30% of your total mark.
CourseNana.COM

Modern computer vision algorithms frequently meet or exceed human performance on constrained supervised tasks like object classification or face recognition. However, there are still many gaps between human and AI performance. In particular, humans are better at tasks that require flexible and abstract reasoning about images. One task that has been proposed to evaluate human-like perception of images is the Totally-Looks-Like challenge [1]. This task is based on a popular entertainment website (https://www.reddit.com/r/totallylookslike/) where users share pairs of images of things that they think look similar, such as the example show in Figure 1. CourseNana.COM

In this project, you will develop an algorithm to solve the Totally-Looks-Like challenge. Your algo- rithm will take one image from a Totally-Looks-Like pair as input and attempt to find its match from a list of possible candidates. This task is challenging because this dataset reflects many different types of image similarity – two images may be paired because they contain similar colours, shapes, textures, poses, or facial expressions. Sometimes only part of the image is relevant to the comparison. You may need to consider a variety of different features of each image to find the best match. CourseNana.COM

Whatever methods you choose, you are expected to evaluate these methods using the provided data, to critically analyse the results, and to justify your design choices in your final report. Your evaluation should include error analysis, where you attempt to understand where your method works well and where it fails. CourseNana.COM

You are encouraged to use existing computer vision libraries your implementation. You may also use existing models or pretrained features as part of your implementation. However, your method should be your own; you may not simply submit an existing model for this problem. CourseNana.COM

Dataset CourseNana.COM

The dataset provided is a subset of the Totally-Looks-Like (TLL) dataset. Each image pair has been split into a “left” and “right” image, and the dataset has been further split into 2000 training pairs and 2000 test pairs. The ground truth matches for the training set are provided in the file train.csv. CourseNana.COM

In the test set, each “left” image is paired with 20 possible “right” images. The set of candidates CourseNana.COM

Figure 1: Example image pairs from the TLL dataset [1]. CourseNana.COM

includes the ground truth “right” image for this “left” image and 19 foils which have been chosen at random from the test set. Your algorithm should evaluate each of these 20 possible matches and attempt to predict which one is the true “right” image for the given “left” image. The candidates are given in the file test candidates.csv. CourseNana.COM

To train your model, you may wish to set up a similar task using the training dataset: for each training “left” image you could select a set of 20 candidates which includes the ground truth “right” image and 19 random foils. However, this is not the only way to train your model. You could instead train your model to select the correct “right” image from the entire training dataset (though this is likely to be a more difficult task, and slower, than choosing from only 20 candidates). Or you could select foils non-randomly; for example, intentionally including “difficult” foils that your model is likely to mistake for the ground truth match, to force it to learn a better representation. CourseNana.COM

The images were scraped from the website and automatically resized/cropped to 200 × 245 pixels; some images may have borders, overlaid text, or other artefacts. Images are not guaranteed to be unique – a “left” image could appear multiple times in the dataset with different “right” matches, or vice versa. Because the images were collected from the internet, they may contain inappropriate or offensive content. CourseNana.COM

Scoring Predictions CourseNana.COM

You should submit your predictions for the test images on Kaggle. Your submissions for Kaggle should follow the same format as the sample-solution.csv file provided on the LMS. The file should include 21 columns: CourseNana.COM

left = a string corresponding to a “left” image from the test set (e.g., ’aaa’
c0, c1, ... c19 = numeric values indicating your model’s confidence that each candi- CourseNana.COM

date “right” image (c0-c19) is the ground truth match for this test image
The confidence values should resemble a softmax output, so higher values indicate which candidate
CourseNana.COM

images are more likely to be the ground truth match. (However, these values do not need to be actual softmax output; for example, they do not have to sum to 1.) CourseNana.COM

The evaluation metric for this competition is top-2 accuracy. For each test image, your model’s outputs will be sorted from highest to lowest confidence, and the top 2 highest-confidence predictions will be compared to the ground truth. If either of these predictions matches the ground truth, your model will be scored correct, otherwise your model will be scored incorrect. The final evaluation score is the average percentage of correct top-2 predictions over the whole test set. CourseNana.COM

Kaggle CourseNana.COM

To join the competition on Kaggle and submit your results, you will need to register at https: //www.kaggle.com/. CourseNana.COM

Please use the “Register with Google” option and use your email address to make an account. Please use only your group member student IDs as your team name (e.g., “1234&5678”). Submissions from teams which do not correspond to valid student IDs will be treated as fake submissions and ignored. CourseNana.COM

Once you have registered for Kaggle, you will be able to join the COMP90086 Final Project compe- tition using the link under Final Project: Code in the Assignments tab on the Canvas LMS. After following that link, you will need to click the “Join Competition” button and agree to the competition rules. CourseNana.COM

Group Formation CourseNana.COM

You should complete this project in a group of 2. You are required to register your group membership on Canvas by completing the “Project Group Registration” survey under “Quizzes.” You may modify your group membership at any time up until the survey due date, but after the survey closes we will consider the group membership final. CourseNana.COM

Submission CourseNana.COM

Submission will be made via the Canvas LMS. Please submit your code and written report separately under the Final Project: Code and the Final Project: Report links on Canvas. CourseNana.COM

Your code submission should include your model code, your test predictions (in Kaggle format), a readme file that explains how to run your code, and any additional files we would need to recreate your results. You should not include the provided train/test images in your code submission, but your readme file should explain where your code expects to find these images. CourseNana.COM

Your written report should be a .pdf that includes the description, analysis, and comparative assess- ment of the method(s) you developed to solve this problem. The report should follow the style of a short conference paper with no more than four A4 pages of content (excluding references, which can extend to a 5th page). The report should follow the style and format of an IEEE conference short paper. The IEEE Conference Template for Word, LaTeX, and Overleaf is available here: https://www.ieee.org/conferences/publishing/templates.html. CourseNana.COM

Your report should explain the design choices in your method and justify these based on your un- derstanding of computer vision theory. You should explain the experimentation steps you followed to develop and improve on your basic method, and report your final evaluation result. Your method, experiments, and evaluation results should be explained in sufficient detail for readers to understand them without having to look at your code. You should include an error analysis which assesses where your method performs well and where it fails, provide an explanation of the errors based on your un- derstanding of the method, and give suggestions for future improvements. Your report should include tables, graphs, figures, and/or images as appropriate to explain and illustrate your results. CourseNana.COM

Evaluation CourseNana.COM

Your submission will be marked on the follow grounds: CourseNana.COM

Component CourseNana.COM

Kaggle submission Team contribution CourseNana.COM

Marks Criteria CourseNana.COM

3 Kaggle performance
2 Group self-assessment
CourseNana.COM

Report writing CourseNana.COM

Clarity of writing and report organisation; use of tables, fig- ures, and/or images to illustrate and support results CourseNana.COM

Report method and justification CourseNana.COM

Correctness of method; motivation and justification of design choices based on computer vision theory CourseNana.COM

Report experimenta- tion and evaluation CourseNana.COM

Quality of experimentation, evaluation, and error analysis; interpretation of results and experimental conclusions CourseNana.COM

The report is marked out of 25 marks, distributed between the writing, method and justification, and experimentation and evaluation as shown above. CourseNana.COM

In addition to the report marks, up to 3 marks will be given for performance on the Kaggle leaderboard. To obtain the full 3 marks, a team must make a Kaggle submission that performs reasonably above a simple baseline. 1-2 marks will be given for Kaggle submissions which perform at or only marginally above the baseline, and 0 marks will be given for submissions which perform at chance. Teams which do not submit results to Kaggle will receive 0 performance marks. CourseNana.COM

Up to 2 marks will be given for team contribution. Each group member will be asked to provide a self-assessment of their own and their teammate’s contribution to the group project, and to mark themselves and their teammate out of 2 (2 = contributed strongly to the project, 1 = made a small contribution to the project, 0 = minimal or no contribution to the project). Your final team contribution mark will be based on the mark assigned to you by your teammate (and their team contribution mark will be based on the mark you assign to them). CourseNana.COM

CourseNana.COM

Late submission CourseNana.COM

The submission mechanism will stay open for one week after the submission deadline. Late submis- sions will be penalised at 10% of the total possible mark per 24-hour period after the original deadline. Submissions will be closed 7 days (168 hours) after the published assignment deadline, and no further submissions will be accepted after this point. CourseNana.COM

Updates to the assignment specifications CourseNana.COM

If any changes or clarifications are made to the project specification, these will be posted on the LMS. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
University of Melbourne代写,Australia代写,COMP90086代写,Computer Vision代写,Python代写,Totally-Looks-Like Challenge代写,University of Melbourne代编,Australia代编,COMP90086代编,Computer Vision代编,Python代编,Totally-Looks-Like Challenge代编,University of Melbourne代考,Australia代考,COMP90086代考,Computer Vision代考,Python代考,Totally-Looks-Like Challenge代考,University of Melbournehelp,Australiahelp,COMP90086help,Computer Visionhelp,Pythonhelp,Totally-Looks-Like Challengehelp,University of Melbourne作业代写,Australia作业代写,COMP90086作业代写,Computer Vision作业代写,Python作业代写,Totally-Looks-Like Challenge作业代写,University of Melbourne编程代写,Australia编程代写,COMP90086编程代写,Computer Vision编程代写,Python编程代写,Totally-Looks-Like Challenge编程代写,University of Melbourneprogramming help,Australiaprogramming help,COMP90086programming help,Computer Visionprogramming help,Pythonprogramming help,Totally-Looks-Like Challengeprogramming help,University of Melbourneassignment help,Australiaassignment help,COMP90086assignment help,Computer Visionassignment help,Pythonassignment help,Totally-Looks-Like Challengeassignment help,University of Melbournesolution,Australiasolution,COMP90086solution,Computer Visionsolution,Pythonsolution,Totally-Looks-Like Challengesolution,