
cc.mallet.optimize.Optimizable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcore-mallet-2.0.9 Show documentation
Show all versions of jcore-mallet-2.0.9 Show documentation
MALLET is a Java-based package for statistical natural language processing, document classification, clustering, topic modeling, information extraction, and other machine learning applications to text.
The newest version!
/* Copyright (C) 2002 Univ. of Massachusetts Amherst, Computer Science Dept.
This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
http://www.cs.umass.edu/~mccallum/mallet
This software is provided under the terms of the Common Public License,
version 1.0, as published by http://www.opensource.org. For further
information, see the file `LICENSE' included with this distribution. */
/**
@author Andrew McCallum [email protected]
*/
package cc.mallet.optimize;
import java.util.Collection;
public interface Optimizable
{
public int getNumParameters ();
public void getParameters (double[] buffer);
public double getParameter (int index);
public void setParameters (double[] params);
public void setParameter (int index, double value);
public interface ByValue extends Optimizable
{
public double getValue ();
}
public interface ByGradient extends Optimizable
{
public void getValueGradient (double[] buffer);
}
public interface ByGradientValue extends Optimizable
{
public void getValueGradient (double[] buffer);
public double getValue ();
}
public interface ByHessian extends Optimizable.ByGradientValue
{
public void getValueHessian (double[][] buffer);
}
public interface ByVotedPerceptron extends Optimizable
{
public int getNumInstances ();
public void getValueGradientForInstance (int instanceIndex, double[] bufffer);
}
public interface ByGISUpdate extends Optimizable
{
public double getValue();
public void getGISUpdate (double[] buffer);
}
public interface ByBatchGradient extends Optimizable {
public void getBatchValueGradient (double[] buffer, int batchIndex, int[] batchAssignments);
public double getBatchValue(int batchIndex, int[] batchAssignments);
}
// gsc: for computing gradient from batches in multiple threads
public interface ByCombiningBatchGradient extends Optimizable {
public void getBatchValueGradient (double[] buffer, int batchIndex, int[] batchAssignments);
public double getBatchValue(int batchIndex, int[] batchAssignments);
public void combineGradients (Collection batchGradients, double[] buffer);
public int getNumBatches();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy