Spaces:
Runtime error
Runtime error
Add description in app
Browse files
app.py
CHANGED
@@ -81,6 +81,7 @@ def generate_plot(tsv: st.uploaded_file_manager.UploadedFile, text_column: str,
|
|
81 |
|
82 |
|
83 |
st.title("Embedding Lenses")
|
|
|
84 |
uploaded_file = st.file_uploader("Choose an csv/tsv file...", type=["csv", "tsv"])
|
85 |
text_column = st.text_input("Text column name", "text")
|
86 |
label_column = st.text_input("Numerical/categorical column name (ignore if not applicable)", "label")
|
|
|
81 |
|
82 |
|
83 |
st.title("Embedding Lenses")
|
84 |
+
st.write("Visualize text embeddings in 2D using colors for continuous or categorical labels.")
|
85 |
uploaded_file = st.file_uploader("Choose an csv/tsv file...", type=["csv", "tsv"])
|
86 |
text_column = st.text_input("Text column name", "text")
|
87 |
label_column = st.text_input("Numerical/categorical column name (ignore if not applicable)", "label")
|