mean_fusion
Bases: metric_fusion
A fusion mechanism that computes the element-wise mean across input tensors.
Notes
Formally, given the input interdependence matrices
where the entry
Methods:
Name | Description |
---|---|
__init__ |
Initializes the mean fusion function. |
Source code in tinybig/fusion/metric_fusion.py
__init__(name='mean_fusion', *args, **kwargs)
Initializes the mean fusion function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name of the fusion function. Defaults to "mean_fusion". |
'mean_fusion'
|
*args
|
tuple
|
Additional positional arguments for the parent class. |
()
|
**kwargs
|
dict
|
Additional keyword arguments for the parent class. |
{}
|