once we have built out a server for ML flow local or otherwise we need to be able to point our data at it in order to allow it to track the expirments we are currently working on
start by making sure you have what you need installed
!pip install mlflow
next lets build out some abritrary tracking to make sure we have a functional conection to the server
# first import the ML flow lib
import mlflow
#!mlflow server
#set the tracking UI for ML flow -
#%env var=$val
%env MLFLOW_TRACKING_URI = http://localhost:5000
#set the tracking UI for ML flow -
#mlflow.set_tracking_uri('http://localhost:5000')
# # start ml flow and set starting run params
with mlflow.start_run(run_name="MLflow Tracking Test"):
mlflow.log_metric("m1", 7.0)
mlflow.log_param("p1", "mlflow-tracking-test")
# # run tracking UI in the background
# get_ipython().system_raw("mlflow ui --port 5000 &")
print('RAN expirments')