Loading adapters error FileNotFoundError

I have Managed to address this issue, I needed to change the model import location, and move the Jupiter notebook into the root vocode folder.

-- root
------- folder
------------ not in here
-- codefile.ipynb

I was using the location as bellow:

model = BertModelWithHeads.from_pretrained(
   "bert_multilingual_cased",
   config=config
)

Needed to use this instead:

model = AutoAdapterModel.from_pretrained(
   "bert_multilingual_cased",
   config=config
)