zero_reconciliation
Bases: constant_reconciliation
The zero parameter reconciliation function.
It performs the zero parameter reconciliation, and returns the zero reconciled parameter matrix of shape (n, D). This class inherits from the constant_reconciliation class defined above.
...
Notes
As a special case of the constant parameter reconciliation function, zero reconciliation projects
any input parameters to zero matrix of shape (n, D) as follows:
where the output matrix
Source code in tinybig/reconciliation/basic_reconciliation.py
__init__(name='zero_reconciliation', *args, **kwargs)
The initialization method of the zero parameter reconciliation function.
It initializes a zero parameter reconciliation function object.
This method will call the initialization method of the constant_reconciliation
class with constant parameter
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name of the parameter reconciliation function. |
'zero_reconciliation'
|
Returns:
Type | Description |
---|---|
fabrication
|
The zero parameter reconciliation function object. |