one_interdependence
Bases: constant_c_interdependence
A class for one interdependence.
This class defines an interdependence matrix filled with zeros, which inherits from constant_c_interdependence
class
with constant factor
Notes
Formally, based on the (optional) input data batch
Methods:
Name | Description |
---|---|
__init__ |
Initializes the one interdependence function. |
Source code in tinybig/interdependence/basic_interdependence.py
__init__(name='one_interdependence', *args, **kwargs)
Initializes the one interdependence function.
This class sets the interdependence matrix to be filled with ones, representing a uniform relationship between all rows or columns of the input tensor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name of the interdependence function. Defaults to 'one_interdependence'. |
'one_interdependence'
|
*args
|
tuple
|
Additional positional arguments for the parent |
()
|
**kwargs
|
dict
|
Additional keyword arguments for the parent |
{}
|