Hello!
I ran a factorization machine model in a data set and i got predictions for the 500000 non missinh ratings. I have exported the ASTORE table. I read that i ahve to follow the below process to get predictions for the missing ratings in the data set in SAS studio:
options cashost="server" casport=5570;
cas mysess;
cas;
caslib _all_ assign;
proc casutil;
load casdata=" model.sashdat " incaslib="Models" casout="test" outcaslib=casuser;
quit;
proc astore;
score data= public.Final_Nwtflix_DataSet out=casuser.scored rstore=casuser.test;
run;
What options should i put for the server and the port since i am using a trial version of VDMML - Viya?
Thanks
Hello!
I just found it.
You have to put localhost in stead of server.
Everything ok!
Andreas
Hello!
I just found it.
You have to put localhost in stead of server.
Everything ok!
Andreas
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.