Use CNTK Pre-trained Image Models in FastAI

Is there anyway to use the CNTK Pre-trained Image Models in fast ai?

Fastai is a PyTorch library, so you can use any compatible PyTorch model in Fastai.

You can directly use them using Learner or define a cut and split for cnn_learner. You will also need to set the pillow loading mode as CNTK, as Fastai defaults is to load as RGB.