Reputation: 1
Is it possible to do classification like random forest classification with just survey points for one class. (kind of binary)
i tried usning ee.Classifier.smileCart().train but while .classify it shows error as EEException: Classifier training failed: 'Only one class.'.
Upvotes: 0
Views: 83
Reputation: 1
If there's only one class, then every sample is in that class. If you need the rest as other class then you need to select training samples for the 'others' as well.
Upvotes: 0