Examples of ToInternalID()


Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          j=example.getValue(i);
          int iid=(int) j;
         
     
          training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid))
           checkForStop();
        }
       
     
        boolean isW = getParameterAsBoolean("Weighted Knn");
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          int uid=(int) j;

          j=example.getValue(i);
          int iid=(int) j;
         
          training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
          checkForStop();
        }       
        
        MostPopular recommendAlg=new MostPopular();
         recommendAlg.SetFeedback(training_data);
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

         
          double j=example.getValue(u);
          int uid=user_mapping.ToInternalID((int) j);

          j=example.getValue(i);
          int iid=item_mapping.ToInternalID((int) j);

          double r=example.getValue(ui);
          training_data.Add(uid, iid, r);
        }
       
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

         
          double j=example.getValue(u);
          int uid=user_mapping.ToInternalID((int) j);

          j=example.getValue(i);
          int iid=item_mapping.ToInternalID((int) j);

          double r=example.getValue(ui);
          training_data.Add(uid, iid, r);
        }
        
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

         
          double j=example.getValue(u);
          int uid=user_mapping.ToInternalID((int) j);

          j=example.getValue(i);
          int iid=item_mapping.ToInternalID((int) j);

          double r=example.getValue(ui);
          training_data.Add(uid, iid, r);
         
        }
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          int uid=(int) j;

          j=example.getValue(i);
          int iid=(int) j;
         
          training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
          checkForStop();
        }
       
     
        boolean isW = getParameterAsBoolean("Weighted Knn");
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          j=example.getValue(i);
          int iid=item_mapping.ToInternalID((int) j);
         
          j=example.getValue(at);
          int aid=attribute_mapping.ToInternalID((int)j);
       
          mat.setLocation(iid, aid, true);
        }
       
          
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          int uid=(int) j;

          j=example.getValue(i);
          int iid=(int) j;
       
          training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
           checkForStop();
        }
       
       
        BPRMF recommendAlg=new BPRMF();
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

          double j=example.getValue(u);
          int uid=(int) j;

          j=example.getValue(i);
          int iid=(int) j;
          training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
           checkForStop();
        }
     
        WRMF recommendAlg=new WRMF();
        
View Full Code Here

Examples of com.rapidminer.data.EntityMapping.ToInternalID()

              int uid=(int) j;

              j=example.getValue(i);
              int iid=(int) j;
             
              training_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
              checkForStop();
            }
           
           
            ExampleSet attribute_set=exampleSetInput1.getData();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.