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

edu.stanford.nlp.optimization.DiffFunction Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.optimization;

/**
 * An interface for once-differentiable double-valued functions over
 * double arrays.  NOTE: it'd be good to have an AbstractDiffFunction
 * that wrapped a Function with a finite-difference approximation.
 *
 * @author Dan Klein
 * @version 1.0
 * @see Function
 * @since 1.0
 */
public interface DiffFunction extends Function {
  /**
   * Returns the first-derivative vector at the input location.
   *
   * @param x a double[] input vector
   * @return the vector of first partial derivatives.
   */
  double[] derivativeAt(double[] x);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy