AI Features

Coding Exercise on Pretext Tasks

Coding exercise on self-supervised pretext task learning.

We'll cover the following...

Problem statement

In this coding exercise, you have to perform an 88-way rotation prediction pretext classification task. In the code snippet below, you need to implement:

  • The make_example() function, which takes a PIL image image and rotates it by {0°,45°,90°,135°,180 ...

Ask