Parallel(n_jobs=-1, temp_folder="/tmp", mmap_mode="r+")(processes) Questions: Is it correct that both the temp_folder and mmap_mode need to be set together when there is no existing file? If so, is this not problematic when joblib Parallel is a dependency of another third-party mo...
load(path, mmap_mode='r') for path in data_paths]。如果我使用 ssh 在 vscode 终端中运行包含此代码的 python 脚本,则一切正常。但是,如果我使用 ssh 在其他终端(如 termius、mobaxterm 等)中运行相同的脚本,则会产生错误: OSError: [Errno 24] Too many open files。有谁遇到过这个问题或者我的代码...