Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ if df2 is not None:
|
|
41 |
model_path = st.text_input("Model path (HuggingFace or local)", value="all-MiniLM-L6-v2")
|
42 |
##More on model selection available on https://linktransformer.github.io/
|
43 |
|
44 |
-
if not
|
45 |
# Checkbox for columns to match on
|
46 |
if not df1.empty and not df2.empty:
|
47 |
columns_df1 = df1.columns.tolist()
|
|
|
41 |
model_path = st.text_input("Model path (HuggingFace or local)", value="all-MiniLM-L6-v2")
|
42 |
##More on model selection available on https://linktransformer.github.io/
|
43 |
|
44 |
+
if df1_upload is not None and df2_upload is not None:
|
45 |
# Checkbox for columns to match on
|
46 |
if not df1.empty and not df2.empty:
|
47 |
columns_df1 = df1.columns.tolist()
|