Package org.grouplens.lenskit.eval.data.crossfold

Examples of org.grouplens.lenskit.eval.data.crossfold.CrossfoldTask


     * @param partitions The number of partitions
     * @param holdout The holdout fraction
     * @return Itself for chaining.
     */
    public SimpleEvaluator addDataset(String name, DataSource source, int partitions, double holdout){
        CrossfoldTask cross = new CrossfoldTask(name)
                .setSource(source)
                .setPartitions(partitions)
                .setHoldoutFraction(holdout);
        addDataset(cross);
        return this;
View Full Code Here

TOP

Related Classes of org.grouplens.lenskit.eval.data.crossfold.CrossfoldTask

Copyright © 2018 www.massapicom. 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.