splicemachine.notebook module¶
This module contains helper functions and tools for use inside of a Jupyter Notebook
-
get_mlflow_ui(experiment_id=None, run_id=None)[source]¶ Display the MLFlow UI as an IFrame
- Parameters
experiment_id – (int or str) Optionally the experiment id to load into view
run_id – (str) Optionally the run_id to load into view. If you pass in a run_id you must pass an experiment_id
- Returns
(IFrame) An IFrame of the MLFlow UI
-
get_spark_ui(port=None, spark_session=None)[source]¶ Display the Spark Jobs UI as an IFrame at a specific port
- Parameters
port – (int or str) The port of the desired spark session
spark_session – (SparkSession) Optionally the Spark Session associated with the desired UI
- Returns