Update my_model/tabs/results.py
Browse files- my_model/tabs/results.py +3 -0
my_model/tabs/results.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
from my_model.results.demo import ResultDemonstrator
|
3 |
from my_model.config import evaluation_config as config
|
|
|
4 |
|
|
|
|
|
5 |
def run_demo():
|
6 |
"""
|
7 |
Run the interactive Streamlit demo for visualizing model evaluation results and analysis.
|
|
|
1 |
import streamlit as st
|
2 |
from my_model.results.demo import ResultDemonstrator
|
3 |
from my_model.config import evaluation_config as config
|
4 |
+
from my_model.utilities.gen_utilities import log_function_call
|
5 |
|
6 |
+
|
7 |
+
@log_function_call
|
8 |
def run_demo():
|
9 |
"""
|
10 |
Run the interactive Streamlit demo for visualizing model evaluation results and analysis.
|