Update RefRef_test.py
Browse files- RefRef_test.py +1 -1
RefRef_test.py
CHANGED
@@ -105,7 +105,7 @@ class RefRef_test(datasets.GeneratorBasedBuilder):
|
|
105 |
|
106 |
for frame_idx, frame in enumerate(data.get("frames", [])):
|
107 |
base_dir = os.path.dirname(filepaths)
|
108 |
-
print(
|
109 |
yield f"{scene_name}_{frame_idx}", {
|
110 |
"image": os.path.join(base_dir, frame["file_path"]+".png"),
|
111 |
"depth": os.path.join(base_dir, frame["depth_file_path"]),
|
|
|
105 |
|
106 |
for frame_idx, frame in enumerate(data.get("frames", [])):
|
107 |
base_dir = os.path.dirname(filepaths)
|
108 |
+
print(os.path.join(base_dir, frame["file_path"]+".png"))
|
109 |
yield f"{scene_name}_{frame_idx}", {
|
110 |
"image": os.path.join(base_dir, frame["file_path"]+".png"),
|
111 |
"depth": os.path.join(base_dir, frame["depth_file_path"]),
|