Java Code Examples for weka.core.Option#setOptions()

The following examples show how to use weka.core.Option#setOptions() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LossL1.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 2
Source File: LossSquaredHinge.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 3
Source File: LossMSE.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 4
Source File: LossFunction.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 5
Source File: EarlyStopping.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {
  Option.setOptions(options, this, this.getClass());
}
 
Example 6
Source File: LossMSE.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 7
Source File: NeuralNetConfiguration.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 8
Source File: TokenPreProcess.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 9
Source File: TruncatedNormalDistribution.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 10
Source File: ActivationELU.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 11
Source File: ActivationSoftSign.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 12
Source File: Layer.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 13
Source File: ActivationTanH.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 14
Source File: LogNormalDistribution.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 15
Source File: NegativeDefaultStepFunction.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 16
Source File: StepFunction.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 17
Source File: Updater.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 18
Source File: Layer.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 19
Source File: ActivationHardSigmoid.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}
 
Example 20
Source File: LossL1.java    From wekaDeeplearning4j with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Parses a given list of options.
 *
 * @param options the list of options as an array of strings
 * @throws Exception if an option is not supported
 */
public void setOptions(String[] options) throws Exception {

  Option.setOptions(options, this, this.getClass());
}