Hello QC Community!

I have a simple Sklearn Random Forest Model that I trained locally on my computer. I want to use it in my algorithm.

I understand there is an object store, but this is only for models trained in the cloud on the research notebook.

 

My ideal solution would be for me to save my model in Dropbox, and then download it in the algorithm. There have been previous threads about this, but none with a solution for my use case.

One solution I thought of was to serialize my model with one of the following packages.

  1. with sklearn-json
  2. with sklearn2pmml
  3. with sklearn-onnx

But it looks like none of these packages are listed as a supported library.

Has anybody done this successfully? If so, how did you do this?

Author