Browse Source

修改了 fdl._FDataSet 中在使用 pickle 时出现的 bug

dev0.8.0
YWMditto 2 years ago
parent
commit
3f4a1f8e80
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      fastNLP/core/dataloaders/torch_dataloader/fdl.py

+ 10
- 0
fastNLP/core/dataloaders/torch_dataloader/fdl.py View File

@@ -47,6 +47,16 @@ class _FDataSet:
def __len__(self) -> int:
return len(self.dataset)

# 这里需要显示地带上这两个方法,因为可能会涉及到 pickle 的 dumps 和 loads;否则会导致 pickle 在 loads 时调用 __setstate__ 方法
# 进入到 __getattr__ 内部,引发死循环;
# https://docs.python.org/3/library/pickle.html#pickling-class-instances
# https://stackoverflow.com/questions/73662315/when-using-multiprocessing-and-spawn-in-python-use-self-a-in-getattr-cause?noredirect=1
def __getstate__(self):
return self.__dict__

def __setstate__(self, state):
self.__dict__ = state


class TorchDataLoader(DataLoader):
"""


Loading…
Cancel
Save