edugp commited on
Commit
b846822
·
1 Parent(s): bcd62f3

Upgrade to st.columns

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -118,7 +118,7 @@ st.title("Embedding Lenses")
118
  st.write("Visualize text embeddings in 2D using colors for continuous or categorical labels.")
119
  uploaded_file = st.file_uploader("Choose an csv/tsv file...", type=["csv", "tsv"])
120
  st.write("Alternatively, select a dataset from the hub")
121
- col1, col2, col3 = st.beta_columns(3)
122
  with col1:
123
  hub_dataset = st.text_input("Dataset name", "ag_news")
124
  with col2:
 
118
  st.write("Visualize text embeddings in 2D using colors for continuous or categorical labels.")
119
  uploaded_file = st.file_uploader("Choose an csv/tsv file...", type=["csv", "tsv"])
120
  st.write("Alternatively, select a dataset from the hub")
121
+ col1, col2, col3 = st.columns(3)
122
  with col1:
123
  hub_dataset = st.text_input("Dataset name", "ag_news")
124
  with col2: