Skip to content

Commit

Permalink
Fix segmentation fault (#2955)
Browse files Browse the repository at this point in the history
### Changes

Set num_workers = 0

### Reason for changes

Segmentation fault

### Related tickets

Ref: 151081
  • Loading branch information
andrey-churkin authored Sep 10, 2024
1 parent 20ecaed commit 387aa30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def run_example():
image_size=(256, 256),
train_batch_size=1,
eval_batch_size=1,
num_workers=1,
num_workers=0,
)
datamodule.setup()
test_loader = datamodule.test_dataloader()
Expand Down

0 comments on commit 387aa30

Please sign in to comment.