Hi @divyasri1504 ,
- Make sure you’re using the correct path to access the file. In Databricks, you should typically prefix everything with
/dbfs
(or dbfs:/
for native functions). Try using the full path like this:
with open("/dbfs/mnt/blob/test.pkl", "rb") as f:
bands = pickle.load(f)
Hopefully, one of these approaches will help you resolve the issue! 😊
If you need further assistance, feel free to ask!