96abhishekarora commited on
Commit
a290a0d
·
verified ·
1 Parent(s): 0812987

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 df1==None and not df2==None:
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()