saving pickle and hdf5 file in Azure machine learning studio and accessing it through API

267 Views Asked by At

I have a pickle file parameters.pkl containing some parameters and their values of a model. The pickle file has been created through the following process:

dict={'scaler': scaler,
'features': z_tags,
'Z_reconstruction_loss': Z_reconstruction_loss}

pickle.dump(dict, open('parameters.pkl', 'wb'))

model_V2.hdf5

I am new to azure machine learning studio.It will be helpful to know, how the pickle file and hdf5 files can be stored in Azure machine Learning Studio and an API endpoint be created, so that the the pickle file can be accessed through API. Objective is to access the pickle file and its contents through API.. Thanks

I upload the snapshot,objective is to access the content of the files. Examples I have seen all examples which show deployment of models where scoring scripts are used. Here I expect the API endpoints to send the parameter values. enter image description here

0

There are 0 best solutions below