org.grouplens.lenskit.eval.traintest.TrainTestJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lenskit-eval Show documentation
Show all versions of lenskit-eval Show documentation
Facilities for evaluating recommender algorithms.
/*
* LensKit, an open source recommender systems toolkit.
* Copyright 2010-2014 LensKit Contributors. See CONTRIBUTORS.md.
* Work on LensKit has been funded by the National Science Foundation under
* grants IIS 05-34939, 08-08692, 08-12148, and 10-17697.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.grouplens.lenskit.eval.traintest;
import com.google.common.base.Stopwatch;
import com.google.common.collect.Lists;
import com.google.common.eventbus.EventBus;
import com.google.common.io.Closer;
import it.unimi.dsi.fastutil.longs.LongIterator;
import it.unimi.dsi.fastutil.longs.LongSet;
import org.apache.commons.lang3.time.DurationFormatUtils;
import org.apache.commons.lang3.time.StopWatch;
import org.grouplens.lenskit.RecommenderBuildException;
import org.grouplens.lenskit.eval.Attributed;
import org.grouplens.lenskit.eval.data.traintest.TTDataSet;
import org.grouplens.lenskit.eval.metrics.Metric;
import org.grouplens.lenskit.util.table.writer.TableWriter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nonnull;
import java.io.IOException;
import java.text.NumberFormat;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeUnit;
/**
* Run a single train-test evaluation of a single algorithmInfo.
*
* @author GroupLens Research
* @since 0.8
*/
abstract class TrainTestJob implements Callable {
protected final Logger logger = LoggerFactory.getLogger(getClass());
protected final Attributed algorithmInfo;
protected final TTDataSet dataSet;
private final TrainTestEvalTask task;
private ExperimentOutputs outputs;
/**
* Create a new train-test eval job.
*
* @param task The task this jbo belongs to.
* @param algo The algorithmInfo to test.
* @param ds The data set to use.
*/
public TrainTestJob(TrainTestEvalTask task,
@Nonnull Attributed algo,
@Nonnull TTDataSet ds) {
this.task = task;
algorithmInfo = algo;
dataSet = ds;
}
/**
* Get the eval task associated with this event.
*
* @return The task.
*/
public TrainTestEvalTask getTask() {
return task;
}
@Override
public Void call() throws IOException, RecommenderBuildException {
runEvaluation();
return null;
}
@SuppressWarnings("PMD.AvoidCatchingThrowable")
private void runEvaluation() throws IOException, RecommenderBuildException {
EventBus bus = task.getProject().getEventBus();
bus.post(JobEvents.started(this));
Closer closer = Closer.create();
try {
outputs = task.getOutputs().getPrefixed(algorithmInfo, dataSet);
TableWriter userResults = outputs.getUserWriter();
List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy