Examples of ToInternalID()


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()

         
          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()

            for (Example example : attribute_set) {
           
            double j;

            j=example.getValue(i);
            int iid=item_mapping.ToInternalID((int) j);
           
            j=example.getValue(at);
            int aid=(int)j;
            mat.setLocation(iid, aid, true);
          }
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();
          }
         
       
           System.out.println(training_data.GetMaxItemID()+" "+training_data.GetMaxUserID());
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.