ML Model & Experiment Provider¶
export_experiment¶
- export_experiment()¶
Create a delta sharing share containing all the runs from an experiment.
- Parameters
share_name (String) – Share Name that will contain the table of models.
full_table_name – Table Name that will contain the models.
experiment_name (String) – Experiment Name that will be shared.
- Return type
None: No return type.
- Example
import arcuate
# export the experiment experiment_name to full_table_name, and add it to share_name
export_experiments(experiment_name, full_table_name, share_name)
Note
This function doesnt have any real return type. It is either a success or it will throw an error.
export_model¶
- export_model()¶
Create a delta sharing share containing all versions of the requested model.
- Parameters
share_name (String) – Share Name that will contain the table with the model.
full_table_name – Table Name that will contain the model.
model_name (String) – Model Name that will be shared.
- Return type
None: No return type.
- Example
import arcuate
# export the model model_name to full_table_name, and add it to share_name
export_models(model_name, full_table_name, share_name)
Note
This function doesnt have any real return type. It is either a success or it will throw an error.