Hi,
Thanks for your interest in ClinicaDL.
Indeed default model for classification task is Conv5_FC3. For classification task default metrics used for evaluation are accuracy, sensitivity, specificity, Positive Predictive Value, Negative Predictive Value and Balanced Accuracy. That is to say those metrics will be automatically computed for training and validation sets in the end of the training phase and if you use `clinicadl predict` on your test sets.
Concerning the resnet18 model, it looks like you are training your model on 3 volumes, which makes 5D batches (1 dimension for the batch, 1 for the channel and 3 for the image). However default resnet18 model from Pytorch is a 2D model (with 2D convolution layers), this is why you have this error because it cannot handle 5D tensors (only 3D or 4D). If you want to to use the resnet18 model you can extract 2D slices from your 3D image using `clinicadl extract slice` command.
FYI a new version of ClinicaDL should be released by the end of the week, and we tried to make some of these points clearer.
You can also use github issues for questions related to ClinicaDL !
Ravi