Spaces:
Runtime error
Runtime error
frances-dean
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -110,7 +110,7 @@ class Echo(torchvision.datasets.VisionDataset):
|
|
110 |
# self.fnames = sorted(os.listdir(self.external_test_location))
|
111 |
else:
|
112 |
# Load video-level labels
|
113 |
-
with open(f"{self.root}FileList.csv")
|
114 |
data = pandas.read_csv(f)
|
115 |
data["Split"].map(lambda x: x.upper())
|
116 |
|
|
|
110 |
# self.fnames = sorted(os.listdir(self.external_test_location))
|
111 |
else:
|
112 |
# Load video-level labels
|
113 |
+
with open(f"{self.root}FileList.csv") as f:
|
114 |
data = pandas.read_csv(f)
|
115 |
data["Split"].map(lambda x: x.upper())
|
116 |
|