-
Hi all. Im currently running RasterVision on a windows laptop via VSCode I already previously encountered the Windows numpy bug in the Training a Model Tutorial (#1950 (reply in thread)) and have already resolved it with the work around. Many thanks @AdeelH I moved onto the next tutorial and am stuck with the following error on running this bit **I understand that it is not optimal running RasterVision on a windows machine, but such are my circumstances at the moment. The error message is attached below. Any help or feedback welcome. Appreciate your time.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Try from torch import multiprocessing
multiprocessing.set_start_method('fork') If that doesn't help, disable multiprocessing in the data loader: predictions = learner.predict_dataset(
...
dataloader_kw=dict(num_workers=0),
) |
Beta Was this translation helpful? Give feedback.
Try
If that doesn't help, disable multiprocessing in the data loader: