Skip to content

Commit

Permalink
experiment name
Browse files Browse the repository at this point in the history
  • Loading branch information
joglekara committed Nov 5, 2024
1 parent ab1a9e6 commit 92c5cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
push:
branches:
- main
- bugfix/docker

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
3 changes: 2 additions & 1 deletion tsadar_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
config.update("jax_enable_x64", True)

import streamlit as st
import yaml, os
import yaml, os, mlflow
from flatten_dict import flatten, unflatten

from tsadar_gui import config
Expand Down Expand Up @@ -81,6 +81,7 @@ def process_file(file_path):
with c2:
if st.button("Fit"):
# run and wait for the results
mlflow.set_experiment(cfg["mlflow"]["experiment"])
run_id = run_for_app(cfg, mode="fit")

st.write(f"The results can be found at the mlflow run id {run_id}")
Expand Down

0 comments on commit 92c5cbc

Please sign in to comment.