The use of "default_class_id" in multiclass classification #1516
-
Hi, Another question: Does chipsize affect the classification results? As in this case with a images resolution of 2 cm
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
See docs. These docs are not for v0.13 but the class inference logic is the same.
|
Beta Was this translation helpful? Give feedback.
default_class_id
is for GeoJSON features that don't have any class info. If all the features in your GeoJSON have a class ID or name, thendefault_class_id
will have no effect. If you set it toNone
, features without any class info will be dropped.See docs. These docs are not for v0.13 but the class inference logic is the same.
default_class_id
is mostly useful when you have just one foreground class and all the GeoJSON features belong to that class but don't have class info in their properties. In such a case,default_class_id
saves you the trouble of altering your GeoJSON file,