The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Error on Apply Model
amenaakhterchy
Member Posts: 7 Contributor I
Hello everyone .
svm do not support polynominal .that's why i used "nominal to numerical " . but problem is when i am using apply model for testing the model . it showing error "attributes do not match" its only happening when i am using svm ..why it is showing ? how can i solve this ? can anyone please help me ?
Thank You
Tagged:
0
Answers
Hi,
Nominal to Numerical is giving you a red preprocessing model. This can be used with an apply model to do the same transformation on the test set.
So you need to chain 2 Apply Model Operators. One with the preprocessing model, one with the SVM Model.
~Martin
Dortmund, Germany
Exactly as @mschmitz says above.
Here's a sample process demonstrating how you'd use the preprocessing model.