Utility Functions¶
Making Deep Lake Samples¶
read |
Utility that reads raw data from supported files into Deep Lake format. |
link |
Utility that stores a link to raw data. |
link_tiled |
Utility that stores links to multiple images that act as tiles and together form a big image. |
Parallelism¶
compute |
Compute is a decorator for functions. |
compose |
Takes a list of functions decorated using deeplake.compute() and creates a pipeline that can be evaluated using .eval |
Transform pipelines returned by compute() and compose() are evaluated using eval:
eval |
Evaluates the pipeline on data_in to produce an output dataset ds_out. |