Important
You are viewing the NeMo 2.0 documentation. This release introduces significant changes to the API and a new library, NeMo Run. We are currently porting all features from NeMo 1.0 to 2.0. For documentation on previous versions or features not yet available in 2.0, please refer to the NeMo 24.07 documentation.
Evaluation#
For CLIP models, our evaluation script calculates zero-shot ImageNet 1K validation accuracy.
To enable the evaluation stage with a CLIP model, configure the configuration files:
In the
defaultssection ofconf/config.yaml, update theevaluationfield to point to the desired CLIP configuration file. For example, if you want to use theclip/imagenet_zeroshotconfiguration, change theevaluationfield toclip/imagenet_zeroshot.defaults: - evaluation: clip/imagenet_zeroshot ...
In the
stagesfield ofconf/config.yaml, make sure theevaluationstage is included. For example,stages: - evaluation ...
Configure
imagenet_valfield ofconf/evaluation/clip/imagenet_zeroshot.yamlto be the ImageNet 1K validation folder.
Remarks:
To load a pretrained checkpoint for inference, set the
restore_from_pathfield in themodelsection to the path of the pretrained checkpoint in.nemoformat inconf/evaluation/clip/imagenet_zeroshot.yaml. By default, this field links to the.nemoformat checkpoint located in the CLIP trainning checkpoints folder.