Skip to content

Commit

Permalink
Merge pull request #411 from ZJUEarthData/web
Browse files Browse the repository at this point in the history
fix: fix the url of mlflow tracking server.
  • Loading branch information
SanyHe authored Jan 2, 2025
2 parents abf1540 + 5f69b28 commit 7bcc590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geochemistrypi/data_mining/cli_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def _data_requirement_print():
# Create a new experiment or use the previous experiment
is_used_previous_experiment = Confirm.ask("✨ Use Previous Experiment", default=False)
# Set the tracking uri to the local directory, in the future, we can set it to the remote server.
experiments_location = os.path.join("file:", WORKING_PATH, "geopi_tracking")
experiments_location = "file:///" + os.path.join(WORKING_PATH, "geopi_tracking")
mlflow.set_tracking_uri(experiments_location)
# Print the tracking uri for debugging.
# print("tracking uri:", mlflow.get_tracking_uri())
Expand Down

0 comments on commit 7bcc590

Please sign in to comment.