norygano commited on
Commit
632a488
·
1 Parent(s): 7e996cc

Radio Button Label

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -37,7 +37,7 @@ st.markdown("[Weights](https://huggingface.co/norygano/causalBERT) | [Data](http
37
  st.write("Indicators and causes in explicit attributions of causality.")
38
 
39
  # Create tabs
40
- tab1, tab2, tab3, tab4, tab5 = st.tabs(["Model", "Indicators", "Causes", "Scatter", "Sankey"])
41
 
42
  # Prompt Tab
43
  with tab1:
@@ -89,7 +89,8 @@ with tab1:
89
  # Indicator Tab
90
  with tab2:
91
  selected_chart_type = st.radio(
92
- "Type",
 
93
  options=['Total', 'Year', 'Individual'],
94
  horizontal=True,
95
  )
 
37
  st.write("Indicators and causes in explicit attributions of causality.")
38
 
39
  # Create tabs
40
+ tab1, tab2, tab3, tab4, tab5 = st.tabs(["Prompt", "Indicators", "Causes", "Scatter", "Sankey"])
41
 
42
  # Prompt Tab
43
  with tab1:
 
89
  # Indicator Tab
90
  with tab2:
91
  selected_chart_type = st.radio(
92
+ label="Type",
93
+ label_visibility='collapsed',
94
  options=['Total', 'Year', 'Individual'],
95
  horizontal=True,
96
  )