Utilities for multi-modal architectures team
Project description
mmar-utils
Common pure/IO utilities for multi-modal architectures team.
Installation
pip install mmar-utils
parallel_map
Mix of joblib.Parallel and tqdm.
Similar libraries
joblib.Parallel: https://joblib.readthedocs.io/en/latest/parallel.html
- doesn't support showing progress out of the box
Syntax comparison ( assuming tqdm disabled )
from math import sqrt, pow
from joblib import Parallel as P, delayed as d
from agi_med_utils import parallel_map
# ONE-ARG: THREADING
print(P(n_jobs=2)(map(d(sqrt), range(5))))
print(P(n_jobs=2)(d(sqrt)(i) for i in range(5)))
print(parallel_map(sqrt, range(5)))
# > [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
# ONE-ARG: MULTIPROCESSING
print(P(n_jobs=2, backend='multiprocessing')(d(sqrt)(i) for i in range(3)))
print(parallel_map(sqrt, range(3), process=True))
# > [0.0, 1.0, 1.4142135623730951]
# MANY-ARGS: THREADING
pow_args = [(i, j) for i in range(1, 4) for j in range(1, 3)]
print(P(n_jobs=2)(d(pow)(i, j) for i, j in pow_args))
print(parallel_map(pow, pow_args, multiple_args=True))
# > [1.0, 1.0, 2.0, 4.0, 3.0, 9.0]
# KWARGS: THREADING
def ipow_kw(*, x, y):
return 1 / pow(x, y)
ipow_kwargs = [{'x': i, 'y': j} for i, j in pow_args]
print(P(n_jobs=2)(d(ipow_kw)(**kw) for kw in ipow_kwargs))
print(parallel_map(ipow_kw, ipow_kwargs, kwargs_args=True))
# > [1.0, 1.0, 0.5, 0.25, 0.3333333333333333, 0.1111111111111111]
# KWARGS: MULTIPROCESSING
def ipow_kw_inc(*, x, y):
return 1 / pow(x, y) + 1
print(P(n_jobs=2, backend='multiprocessing')(d(ipow_kw_inc)(**kw) for kw in ipow_kwargs))
print(parallel_map(ipow_kw_inc, ipow_kwargs, kwargs_args=True, process=True))
# > [2.0, 2.0, 1.5, 1.25, 1.3333333333333333, 1.1111111111111112]
pqdm: https://pqdm.readthedocs.io/en/latest/usage.html
trace_with
Decorator for function which executes some callback on each function call.
Similar libraries
functrace: https://github.com/idanhazan/functrace
- does not remember start datetime of call, which is critical
- supports selection of parameters to remember
functrace.TraceResultobject is not serializable out of the box
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mmar_utils-1.0.1.tar.gz
(8.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mmar_utils-1.0.1.tar.gz.
File metadata
- Download URL: mmar_utils-1.0.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cb3be84cdb7d5414bf72a37b1792ba76ad40d70f04652f676bad88deb36272e
|
|
| MD5 |
1f3e9f674f4be6c8401b476b4181c36a
|
|
| BLAKE2b-256 |
afaf94c75cc99eba6e5364bac2dd83a315b43f0766d312616147eb2c75fac34f
|
File details
Details for the file mmar_utils-1.0.1-py3-none-any.whl.
File metadata
- Download URL: mmar_utils-1.0.1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6f77dc4c9005c8c17b80506c2665a8eaf832e3a3be46a188634191ab183c25
|
|
| MD5 |
0aafed5c3364b65aa55b79a28d8b6ac7
|
|
| BLAKE2b-256 |
582f97a8dd4f15949463ff794479b13da046a2f23cc4a539f688d683838ee807
|