Right after supervised learning nodes in Model Studio VDMML on SAS Viya 4, I place a sas code node to score a table with the learned scoring code. Meanwhile I can use the macro variable for referencing the astore after SVM and Gradient Boosting for example, I cannot figure out how to so for models that do not produce astore like logistic regression.
I can only achieve the scoring operation if I hard-cop the scoring code from the prior node and paste it into the data step.
One of my many attempts is this:
data grid_scored;
set grid;
%include "&dm_file_scorecode.";
run;




