🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

apply multi label modeling - How to keep original attributes in a data set

User: "LeMarc"
New Altair Community Member
Updated by Jocelyn
Hello,

below is a model I build with training data (1) by using the multi label modeling operator. That particular model is applied to another data set (2). Number of attributes and Attribute names are the same in both data set. Only the values of the attributes differ. The goal is to filter wrong predictions & filter other examples based on customized filtering. For the latter one, original attributes of data set (2) are required.


However in the result example set of (2) the original attributes disappear and only the predictions are shown. If I set the original attributes as label (or any other roles) - only "one" original attribute will be shown in the example set of (2). And by doing this the multi label modeling performance - operator does not work since no labels are allowed anyway.

How can I keep the original attributes of data set (2)?

The filter examples operator within the multi label performance operator also does not work if I use the data set (2) to apply the trained model on (s. below). Theres an error note which says "attribute xx does not exist)". But if the model is trained on the data set (1) and also applied on the same date set (1) - wrong predictions can be filtered.



How  can I filter wrong predictions of the data set (2)?

Thank you for the help!

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "varunm1"
    New Altair Community Member
    Accepted Answer
    Updated by varunm1
    Hello @LeMarc

    This seems a bit weird, maybe some issue between multilabel modeling and apply model integration or an intended one ( @tftemme and @mschmitz ).

    To resolve this, I generated an ID for the dataset and used inner join based on the ID column to get the required columns (Survived & Port Embarkation). Then I generated attributes named (Survived_Flag, Port_Embarkation_Flag) by comparing the predictions and original values. This flag will have 1 if the prediction is true and 0 if predictions are false. Attached .rmp file can be imported to RM using FILE --> Import Process. You can then filter examples based on these two flag attributes.

    Do let us know if this works.