thanks for your help it work perfectly : my code bellow : /* export the model */
proc cas;
dlExportModel /
casout={name="HMEQ_DNN_Model",caslib="PUBLIC"}
initWeights={name="ConVbestweights"}
modelTable={name="ConVNN"};
run;
/*save my table */
proc astore;
download rstore=PUBLIC.HMEQ_DNN_Model
store="HMEQ_DNN_Model";
quit;
/*using astore procedure to score a new data set*/
proc astore;
score data=mycas.SmallImageDatashuffled
rstore=PUBLIC.HMEQ_DNN_Model
out=mycas.hmeq1out;
quit;
... View more