BookmarkSubscribeRSS Feed
jhw_
Calcite | Level 5

Hi I'm using recommendation action sets.

There is ratioinfo option in recomAls and recomKnnTrain action . well I can't find information about why ratioinfo affects model I made.

is it for considering bias of user?

please help me!  

 

proc cas;
recommend.recomKnnTrain result=r /
  table='ratings_by_user'
  label='knn3'
  system='movieRecommend'
  similarity='similar_items'                              
  k=20                                                                                                           
  hold='holdout_users'
  rateinfo='avg_user'                                   
  user=False;                                                      
run;

print r;
run;



proc cas;
recommend.recomAls result = r /
    tableU="ratings_by_user"                     
    tableI="ratings_by_item"                  
    system="movieRecommend"
    label="als1"
    casOutU={name="als_u1" replace=true}
    casOutI={name="als_i1" replace=true}
    rateinfo="avg_user"
    maxIter=20                                                   
    hold = "holdout_users"                  
    seed = 1234
    details = True                      
    k=50                                                                        
    /*fconv=1e-6 */
    stagnation = 10                         
    threshold = 0.1 ;                     
run;  
1 REPLY 1
joeFurbee
Community Manager

Hi @jhw_

Do you mean rateinfo vs ratioinfo? If so, you can find more info in SAS Documentation for recomAls Action. rateinfo has the following definition: 

rateInfo={castable}

specifies the in-memory table that contains the rating summary information. Typically, the table contains the average rating for an item or the average rating by a user. The recomRateinfo action can be used to create these tables.

 

Moreover recomRateInfo action has the following:

Summarizes rating information.

 

Hope this is what you were looking for.


Join us for SAS Community Trivia
SAS Bowl XLII, SAS Hackathon 2024
Wednesday, August 14, 2024, at 10 a.m. ET | #SASBowl

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 817 views
  • 0 likes
  • 2 in conversation