camphong24032002 commited on
Commit
04ee0f7
·
1 Parent(s): c7e38fc
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,8 +23,8 @@ def concat_content(title, value):
23
 
24
  def df_to_text(df):
25
  text = []
26
- titles = ["Product ID", "Product Name", "Brand", "Gender", "Price (INR)", "Description", "Primary Color"]
27
- cols = ["ProductID", "ProductName", "ProductBrand", "Gender", "Price (INR)", "Description", "PrimaryColor"]
28
  for data in df:
29
  for title, col in zip(titles, cols):
30
  text.append(concat_content(title, col))
 
23
 
24
  def df_to_text(df):
25
  text = []
26
+ titles = ["Product ID", "Product Name", "Gender", "Price (INR)", "Primary Color"]
27
+ cols = ["ProductID", "ProductName", "Gender", "Price (INR)", "PrimaryColor"]
28
  for data in df:
29
  for title, col in zip(titles, cols):
30
  text.append(concat_content(title, col))