TabularCloudPredictor.to_local_predictor#

TabularCloudPredictor.to_local_predictor(predictor_path: Optional[str] = None, save_path: Optional[str] = None, **kwargs)#

Convert the Cloud trained predictor to a local AutoGluon Predictor.

Parameters
  • predictor_path (Optional[str], default = None) – The s3 predictor path you want to download from. If None, CloudPredictor will try to find the predictor that’s being trained by it and will raise an error if there’s none.

  • save_path (Optional[str], default = None) – Path to save the model. If None, CloudPredictor will create a folder for the model.

  • kwargs – Additional args to be passed to load call of the underneath predictor

Returns

TabularPredictor or MultiModalPredictor based on predictor_type

Return type

AutoGluon Predictor,