Skip to content

Commit a5f62aa

Browse files
committed
lint
1 parent deb4d7f commit a5f62aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nerfstudio/data/datamanagers/full_images_datamanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def setup_eval(self):
352352
self.eval_image_dataloader = DataLoader(
353353
self.eval_imagebatch_stream,
354354
batch_size=1,
355-
num_workers=0, # This must be 0 otherwise there is a crash when trying to pickle custom_view_processor
355+
num_workers=0, # This must be 0 otherwise there is a crash when trying to pickle custom_view_processor
356356
collate_fn=identity_collate,
357357
)
358358
self.iter_eval_image_dataloader = iter(self.eval_image_dataloader)

nerfstudio/data/datamanagers/parallel_datamanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def setup_eval(self):
174174
self.eval_ray_dataloader = DataLoader(
175175
self.eval_raybatchstream,
176176
batch_size=1,
177-
num_workers=0, # This must be 0 otherwise there is a crash when trying to pickle custom_view_processor
177+
num_workers=0, # This must be 0 otherwise there is a crash when trying to pickle custom_view_processor
178178
shuffle=False,
179179
collate_fn=identity_collate, # Our dataset handles batching / collation of rays
180180
)

0 commit comments

Comments
 (0)