How to classify unseen multi instance data?
Ulrich Mayring <[email protected]> Wed, 24 Jan 2024 10:35:25 +0100
| Newsgroups | gmane.comp.ai.weka |
|---|---|
| Message-ID | <[email protected]> |
Hi folks, I have created quite a few models with the various multi instance classifiers available and would now like to use them to classify unseen multi instance data. However, there appears to be no method in the Weka Java API to do this. The usual method for single instance data is: AbstractClassifier.classifyInstance(Instance data); However, for multi instance data I have Instances instead of Instance. So how do I classify an object of type Instances? I could of course loop over all Instance objects contained in Instances and classify each of them, but that appears to be a series of single instance classifications, whereas the model was trained on multi instance data. Does that make sense at all? Many thanks in advance for any pointers, Ulrich _______________________________________________ Wekalist mailing list -- [email protected] Send posts to [email protected] To unsubscribe send an email to [email protected] To subscribe, unsubscribe, etc., visit https://list.waikato.ac.nz/postorius/lists/wekalist.list.waikato.ac.nz List etiquette: http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html