Update my_model/tabs/home.py
Browse files- my_model/tabs/home.py +3 -0
my_model/tabs/home.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
import streamlit.components.v1 as components
|
|
|
3 |
|
|
|
|
|
4 |
def run_home():
|
5 |
"""
|
6 |
Displays the home page for the Knowledge-Based Visual Question Answering (KB-VQA) project using Streamlit.
|
|
|
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 |
+
|
6 |
+
@log_function_call
|
7 |
def run_home():
|
8 |
"""
|
9 |
Displays the home page for the Knowledge-Based Visual Question Answering (KB-VQA) project using Streamlit.
|