Hi all, I've been doing experiments with the deep learning tools available through the Image Analyst extension. Specifically, I'm testing out the tools for land cover classification, using 30m Landsat imagery (6 spectral bands). The classification I'm testing is a 10 class classification (various types of forest, cropland, urban areas, water, vegetated wetlands, etc.).
In the past ~2 weeks, I've been trying to systematically test parameterization, and I'm documenting the results of my model runs (tracking relevant input parameters, accuracies, run times, and whether the output land cover maps look decent based on expert judgement). So far, I've discovered that the DeepLabV3 model type seems to be a non-starter (i.e., bad results), compared to the U-Net. Among other things, I also discovered that using the 256 pixel x 256 pixel default tile width wasn't appropriate for my training data.
I've been working through different backbone models. When I tested the AutoDL function, I found that it only runs the various Resnet models, but doesn't test other ones, like the various Mobilenet models. I wanted to know if anyone in the community has suggestions for backbone models they've used with Landsat or other satellite imagery that work, as I'm all ears. Thanks in advance!