Spaces:
Runtime error
Runtime error
Commit
·
e875883
1
Parent(s):
cea42fe
Update app.py
Browse files
app.py
CHANGED
@@ -19,8 +19,10 @@ df = visit_bench.to_pandas()
|
|
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 |
cols = list(df.columns)
|
25 |
cols.insert(0, cols.pop(cols.index('image')))
|
26 |
df = df.reindex(columns=cols)
|
|
|
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 |
df['image'] = df['image_url'].apply(lambda x: '<a href= "' + str(x) + '" target="_blank"> <img src= "' + str(
|
25 |
+
x) + '" width="200"/> </a>')
|
26 |
cols = list(df.columns)
|
27 |
cols.insert(0, cols.pop(cols.index('image')))
|
28 |
df = df.reindex(columns=cols)
|