misc
This module contains miscellaneous utility functions for handling lists, attributes, and function arguments.
ensure_list(input)
Ensures that the input is wrapped in a list. If the input is None, returns an empty list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input
|
Any
|
The input to wrap in a list. |
required |
Returns:
Name | Type | Description |
---|---|---|
List |
List
|
The input wrapped in a list, or an empty list if input is None. |
Source code in lighter/utils/misc.py
get_name(_callable, include_module_name=False)
Retrieves the name of a callable, optionally including the module name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_callable
|
Callable
|
The callable whose name to retrieve. |
required |
include_module_name
|
bool
|
Whether to include the module name in the result. |
False
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The name of the callable, optionally prefixed with the module name. |
Source code in lighter/utils/misc.py
get_optimizer_stats(optimizer)
Extract learning rates and momentum values from a PyTorch optimizer.
Collects learning rate and momentum/beta values from each parameter group in the optimizer and returns them in a dictionary. Keys are formatted to show the optimizer type and group number (if multiple groups exist).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimizer
|
Optimizer
|
The PyTorch optimizer to extract values from. |
required |
Returns:
Type | Description |
---|---|
dict[str, float]
|
dict[str, float]: dictionary containing: - Learning rates: "optimizer/{name}/lr[/group{N}]" - Momentum values: "optimizer/{name}/momentum[/group{N}]" Where [/group{N}] is only added for optimizers with multiple groups. |
Source code in lighter/utils/misc.py
hasarg(fn, arg_name)
Checks if a callable (function, method, or class) has a specific argument.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fn
|
Callable
|
The callable to inspect. |
required |
arg_name
|
str
|
The name of the argument to check for. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if the argument exists, False otherwise. |
Source code in lighter/utils/misc.py
setattr_dot_notation(obj, attr, value)
Sets an attribute on an object using dot notation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj
|
Callable
|
The object on which to set the attribute. |
required |
attr
|
str
|
The attribute name, which can use dot notation for nested attributes. |
required |
value
|
Any
|
The value to set the attribute to. |
required |