BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
andreas_zaras
Pyrite | Level 9

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

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_zaras
Pyrite | Level 9

Hello!

 

I just found it.

 

You have to put localhost in stead of server.

 

Everything ok!

 

Andreas

View solution in original post

1 REPLY 1
andreas_zaras
Pyrite | Level 9

Hello!

 

I just found it.

 

You have to put localhost in stead of server.

 

Everything ok!

 

Andreas

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
How to choose a machine learning algorithm

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.

Discussion stats
  • 1 reply
  • 1650 views
  • 0 likes
  • 1 in conversation