About 149 results
Open links in new tab
  1. Joblib: running Python functions as pipeline jobs — joblib 1.5.3 ...

    Using joblib’s caching mechanism avoids hand-written persistence and implicitly links the file on disk to the execution context of the original Python object. As a result, joblib’s persistence is good for …

  2. Installing joblib — joblib 1.6.dev0 documentation

    If you don’t need to install for all users, we strongly suggest that you create a local environment and install joblib in it. One of the pros of this method is that you never have to become administrator, and …

  3. Embarrassingly parallel for loops — joblib 1.6.dev0 documentation

    Joblib provides a simple helper class to write parallel for loops using multiprocessing. The core idea is to write the code to be executed as a generator expression, and convert it to parallel computing:

  4. Persistence — joblib 1.6.dev0 documentation

    To fit with Joblib internal implementation and features, such as joblib.load() and joblib.Memory, the registered compressor should implement the Python file object interface.

  5. joblib.dump — joblib 1.6.dev0 documentation

    See also joblib.load corresponding loader Notes Memmapping on load cannot be used for compressed files. Thus using compression can significantly slow down loading. In addition, compressed files take …

  6. joblib.Parallel — joblib 1.6.dev0 documentation - Read the Docs

    a folder pointed by the JOBLIB_TEMP_FOLDER environment variable, /dev/shm if the folder exists and is writable: this is a RAM disk filesystem available by default on modern Linux distributions, the …

  7. Examples — joblib 1.6.dev0 documentation

    Examples ¶ General examples ¶ General-purpose and introductory examples for joblib.

  8. Development — joblib 1.5.3 documentation

    Joblib has an optional dependency on python-lz4 as a faster alternative to zlib and gzip for compressed serialization. Joblib has an optional dependency on psutil to mitigate memory leaks in parallel worker …

  9. joblib.load — joblib 1.6.dev0 documentation

    WARNING: joblib.load relies on the pickle module and can therefore execute arbitrary Python code. It should therefore never be used to load files from untrusted sources.

  10. Why joblib: project goals — joblib 1.5.3 documentation

    Joblib’s philosophy is to keep the underlying algorithm code unchanged, avoiding framework-style modifications. Joblib’s approach ¶ Functions are the simplest abstraction used by everyone. Pipeline …