m7mdal7aj commited on
Commit
f319617
1 Parent(s): f309d0d

Update my_model/utilities/ui_manager.py

Browse files
Files changed (1) hide show
  1. my_model/utilities/ui_manager.py +11 -1
my_model/utilities/ui_manager.py CHANGED
@@ -37,7 +37,14 @@ class UIManager():
37
  st.sidebar.title("Navigation")
38
  selection = st.sidebar.radio("Go to", list(self.tabs.keys()), disabled=st.session_state['loading_in_progress'])
39
  st.sidebar.image("Files/mm.jpeg", use_column_width=True)
40
- st.sidebar.markdown(" **[Mohammed H AlHaj](https://www.linkedin.com/in/m7mdal7aj)**")
 
 
 
 
 
 
 
41
 
42
  return selection
43
 
@@ -58,6 +65,9 @@ class UIManager():
58
  """Displays the Dataset Analysis page."""
59
 
60
  st.title("Dataset Analysis")
 
 
 
61
  run_dataset_analyzer()
62
 
63
 
 
37
  st.sidebar.title("Navigation")
38
  selection = st.sidebar.radio("Go to", list(self.tabs.keys()), disabled=st.session_state['loading_in_progress'])
39
  st.sidebar.image("Files/mm.jpeg", use_column_width=True)
40
+ st.sidebar.markdown(
41
+ """
42
+ <div style="text-align: center;">
43
+ <a href="https://www.linkedin.com/in/m7mdal7aj" style="font-weight: bold; text-decoration: none;">Mohammed H AlHaj</a>
44
+ </div>
45
+ """,
46
+ unsafe_allow_html=True
47
+ )
48
 
49
  return selection
50
 
 
65
  """Displays the Dataset Analysis page."""
66
 
67
  st.title("Dataset Analysis")
68
+ st.write("""This page shows an overview of some of the KB-VQA datasets, and various analysis of
69
+ the [OK-VQA Dataset](https://okvqa.allenai.org/) that this KB-VQA model was fine-tuned
70
+ and evaluated on.""")
71
  run_dataset_analyzer()
72
 
73