Building model for 4-band data? #1472
Answered
by
AdeelH
NoaMillsUSDA-ARS
asked this question in
Q&A
-
I'm trying to train rastervision to do semantic segmentation on 4 band imagery. I obviously can't use resnet50 for this task, since resnet50 is built for 3 band imagery. How can I create a custom neural network model to use in resnet50's place? |
Beta Was this translation helpful? Give feedback.
Answered by
AdeelH
Sep 7, 2022
Replies: 1 comment 2 replies
-
Raster Vision is quite capable of handling arbitrary number of bands. See the To use a custom model architecture, see the |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
NoaMillsUSDA-ARS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Raster Vision is quite capable of handling arbitrary number of bands. See the
multiband
argument isisprs_potsdam.py
for an example.To use a custom model architecture, see the
external_model
argument in the same file.