Spaces:
Running
Running
Commit
·
d0765d4
1
Parent(s):
721ac40
refactor: update column names in app.py to replace 'Model Owner' with 'Owner', improving clarity and consistency in data representation
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ df["URL"] = df.apply(
|
|
25 |
axis=1,
|
26 |
)
|
27 |
df = df[
|
28 |
-
["URL", "Platform", "
|
29 |
+ [
|
30 |
col
|
31 |
for col in df.columns.tolist()
|
|
|
25 |
axis=1,
|
26 |
)
|
27 |
df = df[
|
28 |
+
["URL", "Platform", "Owner", "Device", "Model", "Optimization", "Median Inference Time", "Price per Image"]
|
29 |
+ [
|
30 |
col
|
31 |
for col in df.columns.tolist()
|