AUC and K-Fold cross validation

Dear all,
Is it possible to compute the average area under the curve (AUC) score and implement K-fold cross-validation with fastai? I am using the latest version for fastai.

Could anyone please help me, how can I do it?
I truly appreciate your kind help.

You need to code yourself as fastai doesn’t have cross validation support. I would recommend to use sklearn kfold functions to split your dataset between folds. Then, use IndexSplitter.

Thank you very much.