gnn_tracking.utils.signature#
Module Contents#
Functions#
|
Return all argument names of function |
|
Remove all keys from |
|
A decorator to make a function accept (and ignore) additional keyword |
- gnn_tracking.utils.signature.get_all_argument_names(func: Callable) list[str]#
Return all argument names of function
- gnn_tracking.utils.signature.remove_irrelevant_arguments(func: Callable, kwargs: dict[str, Any]) dict[str, Any]#
Remove all keys from
kwargsthat are not a named argument forfunc.
- gnn_tracking.utils.signature.tolerate_additional_kwargs(func: Callable) Callable#
A decorator to make a function accept (and ignore) additional keyword arguments.