Request for More Flexible RCF Implementation (Variable Image Sizes & Multiple Kernel Sizes) #2684
cullen-molitor
started this conversation in
Ideas
Replies: 1 comment
-
If you want to open a PR I'm sure @calebrob6 would be happy to review! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to request two enhancements to the
RCF
class intorchgeo.models
:Flexible Handling of Image Sizes in Empirical Mode
mode="empirical"
requires images to be resized to a uniformheight
andwidth
. The RCF process effectively collapses spatial information so maintaining a fixed image shape is not necessary. It would be great if the class could natively handle varying image shapes!Ability to Specify Multiple Kernel Sizes
kernel_size
(e.g., 3), and all features are generated using that one size. I would like the ability to pass two kernel sizes, where the model automatically splits the desired number of features. For example, if I request 4,000 features andkernel_size=[3, 6]
, it could allocate the first 2,000 features to usekernel_size=3
and the next 2,000 to usekernel_size=6
.Suggested edits for point 1 (untested, but based on Calebs previous response):
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions