ImageNet pretraining & Augmented reference set during inference

Hi,

I will like to clarify two issues, which had been bought up in previous threads, but I will love to have clearer views on them.

  1. If I have an untrained model, can I pretrain the model on ImageNet? ImageNet

External data : Pre-trained models and external data are explicitly allowed in this competition as long as the participant has a valid license for use in accordance with the Competition Rules.

  1. As far as I know, we cannot use augmented images from reference set for training purpose. We can only use unaugmented (but crop is allowed) images from reference set for training, but it is discouraged.
    Are we allowed to perform augmentations on an image from reference set during inference into multiple augmented images, then match the augmented reference image to the query image? Training on Reference

Augmenting reference images is permitted in the inference process of generating embeddings and matching scores, so long as each reference image is used independently without any interaction with other reference images. Use of augmented reference images for any other reason, including model training, is prohibited.

Thanks!

“Augmentation (including resizing or cropping) for training purposes is only allowed on the training set, not the reference or query sets.”

@redcurries Thanks for reaching out to clarify.

  1. See language from recent response to the post.

Participants will need to determine whether their use of a proposed external data set for the competition is permitted under the data set’s license. External data requirements are detailed in the Official Rules and any licenses need to permit use for the purposes of participating in a prize competition. Potential winners will be asked to certify that any external data they used complies with the requirements in the competition official rules.

  1. As @wenhaowang mentions, you’ll want to read over the response to that thread.

Any form of augmentation is allowed during inference. For example, you could run inference on multiple augmentations of a single image and aggregate the results for that image independently of other images.
Augmentation (including resizing or cropping) for training purposes is only allowed on the training set, not the reference or query sets.

2 Likes

Hi,

Does image channel normalization belong to augmentation?
For example, are we allowed to divide the input image by 255, and then subtract/divide the mean/std per channel, if we want to train our models on reference images?

Hi @coin,

A standard normalization technique like Z-scoring/standard-scaling pixel values within image channels, if applied once to an image as part of preprocessing, is not considered augmentation. In general, preprocessing techniques to normalize an image that is applied once is not considered augmentation.

From the competition rules:

“Augmenting” images refers to applying a transformation to an image to generate a new image, such as the manner in which the query set images were derived from the reference set images.

Please refer to this previous answer for more general clarification about when augmentation is allowed or not.

1 Like