All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.mahout.vectorizer.encoders.ConstantValueEncoder Maven / Gradle / Ivy

/*
 * 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.vectorizer.encoders;

import org.apache.mahout.math.Vector;

/**
 * An encoder that does the standard thing for a virtual bias term.
 */
public class ConstantValueEncoder extends CachingValueEncoder {
  public ConstantValueEncoder(String name) {
    super(name, 0);
  }

  @Override
  public void addToVector(byte[] originalForm, double weight, Vector data) {
    int probes = getProbes();
    String name = getName();
    for (int i = 0; i < probes; i++) {
      int n = hashForProbe(originalForm, data.size(), name, i);
      if (isTraceEnabled()) {
        trace((String) null, n);                
      }
      data.set(n, data.get(n) + getWeight(originalForm,weight));
    }
  }

  @Override
  protected double getWeight(byte[] originalForm, double w) {
    return w;
  }

  @Override
  public String asString(String originalForm) {
    return getName();
  }

  @Override
  protected int getSeed() {
    return 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy