sphere_patch_based_geometric_interdependence
Bases: geometric_interdependence
A geometric interdependence class using spherical patches.
This class applies geometric interdependence based on sphere-shaped patches within a grid structure.
Attributes:
Name | Type | Description |
---|---|---|
patch |
sphere
|
The sphere patch structure used for interdependence. |
Methods:
Name | Description |
---|---|
__init__ |
Initializes the spherical patch-based geometric interdependence function. |
Source code in tinybig/interdependence/geometric_interdependence.py
__init__(r, name='sphere_patch_based_geometric_interdependence', *args, **kwargs)
Initializes the spherical patch-based geometric interdependence function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
r
|
int
|
Radius of the sphere patch. |
required |
name
|
str
|
Name of the interdependence function. Defaults to 'sphere_patch_based_geometric_interdependence'. |
'sphere_patch_based_geometric_interdependence'
|
*args
|
tuple
|
Additional positional arguments for the parent class. |
()
|
**kwargs
|
dict
|
Additional keyword arguments for the parent class. |
{}
|