Package org.apache.mahout.cf.taste.impl.neighborhood

Source Code of org.apache.mahout.cf.taste.impl.neighborhood.ThresholdUserNeighborhood

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.mahout.cf.taste.impl.neighborhood;

import org.apache.mahout.cf.taste.common.TasteException;
import org.apache.mahout.cf.taste.similarity.UserSimilarity;
import org.apache.mahout.cf.taste.model.DataModel;
import org.apache.mahout.cf.taste.model.User;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

/**
* <p>Computes a neigbhorhood consisting of all {@link User}s whose similarity to the
* given {@link User} meets or exceeds a certain threshold. Similarity is defined by the given
* {@link org.apache.mahout.cf.taste.similarity.UserSimilarity}.</p>
*/
public final class ThresholdUserNeighborhood extends AbstractUserNeighborhood {

  private static final Logger log = LoggerFactory.getLogger(ThresholdUserNeighborhood.class);

  private final double threshold;

  /**
   * @param threshold similarity threshold
   * @param userSimilarity similarity metric
   * @param dataModel data model
   * @throws IllegalArgumentException if threshold is {@link Double#NaN},
   * or if samplingRate is not positive and less than or equal to 1.0, or if userSimilarity
   * or dataModel are <code>null</code>
   */
  public ThresholdUserNeighborhood(double threshold,
                                   UserSimilarity userSimilarity,
                                   DataModel dataModel) {
    this(threshold, userSimilarity, dataModel, 1.0);
  }

  /**
   * @param threshold similarity threshold
   * @param userSimilarity similarity metric
   * @param dataModel data model
   * @param samplingRate percentage of users to consider when building neighborhood -- decrease to
   * trade quality for performance
   * @throws IllegalArgumentException if threshold or samplingRate is {@link Double#NaN},
   * or if samplingRate is not positive and less than or equal to 1.0, or if userSimilarity
   * or dataModel are <code>null</code>
   */
  public ThresholdUserNeighborhood(double threshold,
                                   UserSimilarity userSimilarity,
                                   DataModel dataModel,
                                   double samplingRate) {
    super(userSimilarity, dataModel, samplingRate);
    if (Double.isNaN(threshold)) {
      throw new IllegalArgumentException("threshold must not be NaN");
    }
    this.threshold = threshold;
  }

  @Override
  public Collection<User> getUserNeighborhood(Object userID) throws TasteException {
    log.trace("Computing neighborhood around user ID '{}'", userID);

    DataModel dataModel = getDataModel();
    User theUser = dataModel.getUser(userID);
    List<User> neighborhood = new ArrayList<User>();
    Iterator<? extends User> users = dataModel.getUsers().iterator();
    UserSimilarity userSimilarityImpl = getUserSimilarity();

    while (users.hasNext()) {
      User user = users.next();
      if (sampleForUser() && !userID.equals(user.getID())) {
        double theSimilarity = userSimilarityImpl.userSimilarity(theUser, user);
        if (!Double.isNaN(theSimilarity) && theSimilarity >= threshold) {
          neighborhood.add(user);
        }
      }
    }

    log.trace("UserNeighborhood around user ID '{}' is: {}", userID, neighborhood);

    return Collections.unmodifiableList(neighborhood);
  }

  @Override
  public String toString() {
    return "ThresholdUserNeighborhood";
  }

}
TOP

Related Classes of org.apache.mahout.cf.taste.impl.neighborhood.ThresholdUserNeighborhood

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.