org.apache.mahout.clustering.evaluation.RepresentativePointsMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahout-integration Show documentation
Show all versions of mahout-integration Show documentation
Optional components of Mahout which generally support interaction with third party systems,
formats, APIs, etc.
/**
* 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.clustering.evaluation;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.mahout.clustering.classify.WeightedVectorWritable;
import org.apache.mahout.common.ClassUtils;
import org.apache.mahout.common.Pair;
import org.apache.mahout.common.distance.DistanceMeasure;
import org.apache.mahout.common.distance.EuclideanDistanceMeasure;
import org.apache.mahout.common.iterator.sequencefile.PathFilters;
import org.apache.mahout.common.iterator.sequencefile.PathType;
import org.apache.mahout.common.iterator.sequencefile.SequenceFileDirIterable;
import org.apache.mahout.math.VectorWritable;
public class RepresentativePointsMapper
extends Mapper {
private Map> representativePoints;
private final Map mostDistantPoints = new HashMap<>();
private DistanceMeasure measure = new EuclideanDistanceMeasure();
@Override
protected void cleanup(Context context) throws IOException, InterruptedException {
for (Map.Entry entry : mostDistantPoints.entrySet()) {
context.write(new IntWritable(entry.getKey()), entry.getValue());
}
super.cleanup(context);
}
@Override
protected void map(IntWritable clusterId, WeightedVectorWritable point, Context context)
throws IOException, InterruptedException {
mapPoint(clusterId, point, measure, representativePoints, mostDistantPoints);
}
public static void mapPoint(IntWritable clusterId,
WeightedVectorWritable point,
DistanceMeasure measure,
Map> representativePoints,
Map mostDistantPoints) {
int key = clusterId.get();
WeightedVectorWritable currentMDP = mostDistantPoints.get(key);
List repPoints = representativePoints.get(key);
double totalDistance = 0.0;
if (repPoints != null) {
for (VectorWritable refPoint : repPoints) {
totalDistance += measure.distance(refPoint.get(), point.getVector());
}
}
if (currentMDP == null || currentMDP.getWeight() < totalDistance) {
mostDistantPoints.put(key, new WeightedVectorWritable(totalDistance, point.getVector().clone()));
}
}
@Override
protected void setup(Context context) throws IOException, InterruptedException {
super.setup(context);
Configuration conf = context.getConfiguration();
measure =
ClassUtils.instantiateAs(conf.get(RepresentativePointsDriver.DISTANCE_MEASURE_KEY), DistanceMeasure.class);
representativePoints = getRepresentativePoints(conf);
}
public void configure(Map> referencePoints, DistanceMeasure measure) {
this.representativePoints = referencePoints;
this.measure = measure;
}
public static Map> getRepresentativePoints(Configuration conf) {
String statePath = conf.get(RepresentativePointsDriver.STATE_IN_KEY);
return getRepresentativePoints(conf, new Path(statePath));
}
public static Map> getRepresentativePoints(Configuration conf, Path statePath) {
Map> representativePoints = new HashMap<>();
for (Pair record
: new SequenceFileDirIterable(statePath,
PathType.LIST,
PathFilters.logsCRCFilter(),
conf)) {
int keyValue = record.getFirst().get();
List repPoints = representativePoints.get(keyValue);
if (repPoints == null) {
repPoints = new ArrayList<>();
representativePoints.put(keyValue, repPoints);
}
repPoints.add(record.getSecond());
}
return representativePoints;
}
}