yonatanbitton commited on
Commit
5fa6c95
·
1 Parent(s): d7e216f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ df = visit_bench.to_pandas()
19
  print(f"Got {len(df)} items in dataframe")
20
  df = df.sample(frac=1)
21
 
22
- df['image_url'] = df['image_url'].apply(lambda x: '<a href= "' + str(x) + '" target="_blank"> <img src= "' + str(
23
  x) + '"/> </a>')
24
 
25
  LINES_NUMBER = 20
 
19
  print(f"Got {len(df)} items in dataframe")
20
  df = df.sample(frac=1)
21
 
22
+ df['image'] = df['image_url'].apply(lambda x: '<a href= "' + str(x) + '" target="_blank"> <img src= "' + str(
23
  x) + '"/> </a>')
24
 
25
  LINES_NUMBER = 20