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

weka.core.pmml.jaxbbindings.ACTIVATIONFUNCTION Maven / Gradle / Ivy

Go to download

The Waikato Environment for Knowledge Analysis (WEKA), a machine learning workbench. This version represents the developer version, the "bleeding edge" of development, you could say. New functionality gets added to this version.

There is a newer version: 3.9.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.12.20 at 12:48:21 PM GMT 
//


package weka.core.pmml.jaxbbindings;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;


/**
 * 

Java class for ACTIVATION-FUNCTION. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="ACTIVATION-FUNCTION">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="threshold"/>
 *     <enumeration value="logistic"/>
 *     <enumeration value="tanh"/>
 *     <enumeration value="identity"/>
 *     <enumeration value="exponential"/>
 *     <enumeration value="reciprocal"/>
 *     <enumeration value="square"/>
 *     <enumeration value="Gauss"/>
 *     <enumeration value="sine"/>
 *     <enumeration value="cosine"/>
 *     <enumeration value="Elliott"/>
 *     <enumeration value="arctan"/>
 *     <enumeration value="radialBasis"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlEnum public enum ACTIVATIONFUNCTION { @XmlEnumValue("arctan") ARCTAN("arctan"), @XmlEnumValue("cosine") COSINE("cosine"), @XmlEnumValue("Elliott") ELLIOTT("Elliott"), @XmlEnumValue("exponential") EXPONENTIAL("exponential"), @XmlEnumValue("Gauss") GAUSS("Gauss"), @XmlEnumValue("identity") IDENTITY("identity"), @XmlEnumValue("logistic") LOGISTIC("logistic"), @XmlEnumValue("radialBasis") RADIAL_BASIS("radialBasis"), @XmlEnumValue("reciprocal") RECIPROCAL("reciprocal"), @XmlEnumValue("sine") SINE("sine"), @XmlEnumValue("square") SQUARE("square"), @XmlEnumValue("tanh") TANH("tanh"), @XmlEnumValue("threshold") THRESHOLD("threshold"); private final String value; ACTIVATIONFUNCTION(String v) { value = v; } public String value() { return value; } public static ACTIVATIONFUNCTION fromValue(String v) { for (ACTIVATIONFUNCTION c: ACTIVATIONFUNCTION.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy