from truefoundry.ml import get_client# Initialize the clientclient = get_client()# Create a runrun = client.create_run( ml_repo="my-classification-project", run_name="svm-with-rbf-kernel")# Log metrics and parametersrun.log_metrics({"accuracy": 0.95, "loss": 0.1})run.log_params({"learning_rate": 0.01, "epochs": 100})# End the runrun.end()