SR-Forge
Graph Interpolation¶
ConvolutionalUpscaling
¶
Bases: Module
Graph-based convolutional upscaling using spline convolutions.
Constructs a high-resolution point cloud from low-resolution graph data by placing target positions on a regular grid and performing message passing from neighbouring source nodes via radius-based connectivity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scale
|
int
|
Spatial upsampling factor. |
None
|
in_channels
|
int
|
Number of input feature channels. |
None
|
out_channels
|
int
|
Number of output feature channels. |
None
|
nn
|
Module
|
Custom message-passing network. |
None
|
transform
|
optional
|
Edge-attribute transform (defaults to Cartesian). |
None
|
legacy_mode
|
bool
|
If |
False
|
kernel_size
|
int
|
Spline kernel size (defaults to |
None
|