I'm using the following chunk of code to try and score some new data.
proc nnet data=casuser.newdata inmodel=casuser.oldmodel;
score out=casuser.scoreddata;
run;
Upon running this code, I receive the following errors:
ERROR: Invalid argument
ERROR: The action stopped due to errors
I've double checked that all of the inputs in the newdata table are named exactly as used in the model and I've tried multiple variations of copyvar arguments in the score statement, but the only change that's been able to eliminate the error is by removing the score statement so that the code is as follows:
proc nnet data=casuser.newdata inmodel=casuser.oldmodel;
run;
The code runs without error in this case, but that doesn't help me. A big part of my problem right now is not knowing what to look and to fix this, so any help would be greatly appreciated.