I am unable to store, view, and retrieve the artifacts in MLFlow. The artifact folder is empty irrespective of creating a new experiment and assign proper experiment name and location.
Server: mlflow server --backend-store-uri mlruns/ --default-artifact-root mlruns/ --host 0.0.0.0 --port 5000
Create an Experiment: mlflow.create_experiment(exp_name, artifact_location='mlruns/')
with mlflow.start_run():
mlflow.log_metric("mse", float(binary))
mlflow.log_artifact(data_path, "data")
# log model
mlflow.keras.log_model(model, "models")
The code compiles and runs but does not have any artifacts recorded. It has mlflow.log-model.history file but not the model.h5