Package org.grouplens.lenskit.core

Examples of org.grouplens.lenskit.core.LenskitConfiguration.addRoot()


    LenskitRecommender recommender;

    @Before
    public void createRecommender() throws RecommenderBuildException {
        LenskitConfiguration config = new LenskitConfiguration();
        config.addRoot(ItemDAO.class);
        config.bind(ItemDAO.class).to(FixedItemDAO.class);
        config.bind(EventDAO.class).to(EventCollectionDAO.create(Collections.<Rating>emptyList()));
        recommender = LenskitRecommender.build(config);
    }
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.