Azure Data Lake Storage
An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
1,562 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to store the machine learning model (sklearn model) to adls and retrieve it?
Hello @Nalge, Meghraj
How did you exported the trained model? using any Python library?
Did you try below?
# Retrieve the pickle file from ADLS
with file_system_client.get_file_client(file_path) as file:
data = file.readall()
model = pickle.loads(data)