Update my_model/tabs/model_arch.py
Browse files
my_model/tabs/model_arch.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import streamlit.components.v1 as components
|
|
|
|
| 3 |
|
|
|
|
| 4 |
def run_model_arch():
|
| 5 |
|
| 6 |
with open("Files/Model Arch.html", 'r', encoding='utf-8') as f:
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import streamlit.components.v1 as components
|
| 3 |
+
from my_model.utilities.gen_utilities import log_function_call
|
| 4 |
|
| 5 |
+
@log_function_call
|
| 6 |
def run_model_arch():
|
| 7 |
|
| 8 |
with open("Files/Model Arch.html", 'r', encoding='utf-8') as f:
|