From a5a9490a8dc76f4f7ec5a5d500e815daee447941 Mon Sep 17 00:00:00 2001 From: Jesus Camacho Rodriguez Date: Thu, 19 Sep 2024 10:52:13 -0700 Subject: [PATCH] Refactor project structure to support additional modules (#333) (addendum 2) --- core/metrics/app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/metrics/app/main.py b/core/metrics/app/main.py index c215511f..0cbcc84b 100755 --- a/core/metrics/app/main.py +++ b/core/metrics/app/main.py @@ -278,8 +278,8 @@ def run(*, result_dirs: List[str] = None): st.title('LST-Bench - Dashboard') st.write("[Project Page](https://github.com/microsoft/lst-bench/) | " "[Technical Report](https://arxiv.org/abs/2305.01120) | " - "[Evaluation](https://github.com/microsoft/lst-bench/tree/main/metrics/app#evaluation) | " - "[Adding a New Result](https://github.com/microsoft/lst-bench/tree/main/metrics/app#adding-a-new-result)") + "[Evaluation](https://github.com/microsoft/lst-bench/tree/main/core/metrics/app#evaluation) | " + "[Adding a New Result](https://github.com/microsoft/lst-bench/tree/main/core/metrics/app#adding-a-new-result)") workloads = get_workloads(result_dirs=result_dirs) workload_selected = st.sidebar.selectbox('Workload', workloads, index=0)