Functional¶
danling.metric.functional
¶
base_preprocess
¶
base_preprocess(
input: Tensor | NestedTensor | Sequence,
target: Tensor | NestedTensor | Sequence,
ignore_index: int | None = None,
ignore_nan: bool = False,
)
Basic preprocessing function for metric inputs and targets.
This function handles common preprocessing tasks for metric computation: 1. Converting inputs/targets to tensors or nested tensors 2. Handling nested tensors by concatenating them 3. Removing ignored indices (e.g., padding) 4. Removing NaN values 5. Properly reshaping tensors for metric functions
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Tensor | NestedTensor | Sequence
|
Model predictions or outputs - Can be Tensor, NestedTensor, or a sequence that can be converted to tensor |
required |
|
Tensor | NestedTensor | Sequence
|
Ground truth labels/values - Can be Tensor, NestedTensor, or a sequence that can be converted to tensor |
required |
|
int | None
|
Value in target to ignore (e.g., -100 for padding in classification tasks) |
None
|
|
bool
|
Whether to remove NaN values (useful for regression tasks) |
False
|
Returns:
Name | Type | Description |
---|---|---|
tuple |
(processed_input, processed_target) as tensors ready for metric computation |
Examples:
Python Console Session | |
---|---|
Python Console Session | |
---|---|
Python Console Session | |
---|---|
Source code in danling/metric/functional/preprocess.py
with_preprocess
¶
with_preprocess(preprocess_fn: Callable, **default_kwargs)
Decorator to apply preprocessing to metric functions.
This decorator wraps metric functions to handle preprocessing of inputs before the metric is calculated. It handles common preprocessing tasks like ignoring certain values or converting input formats, making the metric functions more robust and easier to use.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Callable
|
The preprocessing function to apply |
required |
|
Default values for the preprocessing function’s parameters |
{}
|
Returns:
Type | Description |
---|---|
Decorated function with preprocessing capability |
Examples:
Python Console Session | |
---|---|
Python Console Session | |
---|---|
Python Console Session | |
---|---|
Python Console Session | |
---|---|
Notes
- The wrapper extracts parameters needed for preprocessing from **kwargs
- If preprocess=False is passed, no preprocessing is applied
- All other parameters are passed through to the metric function