Examples of ToInternalID()


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

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

            j=example.getValue(i);
            int iid=(int) j;
            train_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
        }
         
          for (Example example : exampleSet1) {
            double j=example.getValue(tu);
            int uid=(int) j;
View Full Code Here

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

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

            j=example.getValue(ti);
            int iid=(int) j;
            test_data.Add(user_mapping.ToInternalID(uid), item_mapping.ToInternalID(iid));
       
         
         
           Map<String,Double> result= ItemPredictionEval.Evaluate(model, test_data,train_data,test_data.GetAllUsers(),train_data.GetAllItems()); //train_data.GetAllUsers(),train_data.GetAllItems()
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.