My organisation is running v13.2 of EM so there is no HPBNET node in EM and it has to be run through a code node. I have set the tool type to model and run the following code as per 'What's New in SAS Enterprise Miner 13.1':
proc HPBNET data=&em_import_data;
target %em_target;
input %em_nominal_input / level=nominal;
input %em_interval_input / level=interval;
code file="&em_file_empublishscorecode";
run;
The input is from a data partition node then metadata node. It runs without error but I get a warning that one of my variables is constant (which I don't understand because it has different values).
It seems to not produce a scored version of my training and validation datasets because I get errors when I try to run a model comparison node - ERROR: Variable P_FLAG_RCVR1 not found. (where P_FLAG_RCVR1 is the predicted value of my target variable.)
Any suggestions greatly appreciated. Or if there is more information that would help please let me know.