Open NoCreativeIdeaForGoodUserName opened 1 month ago
Hi, thank you for reporting this issue. The code has not been actively tested on windows. I'll look at it this week!
I made the modification you proposed. And I tested main_fillmissing on my windows with values 0, 1, and 2 for the n_cpus parameter. It seems to work! Thank you for your help.
Hi,
First of all, thank you for providing this useful set of models. Second: I think I found an issue that seems to arise with parallel processing in Windows. In main_fillmissing.py, lines 79-82:
Whenever "num_workers" in the Dataloaders is set to any other value than 0, this will result in the code crashing further down in the same script line 150:
Throwing an error:
This problem can be fixed by going to dataset_utils.py in line 63 to then change the line
to
This then properly closes the file after loading and creates a true new dictionary instance, resolving the above error.