Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


com.sigmadynamics.server.rtis.PredictionEngine
Enum ModelLift

java.lang.Object
  extended by java.lang.Enum<ModelLift>
      extended by com.sigmadynamics.server.rtis.PredictionEngine.ModelLift

All Implemented Interfaces:
java.lang.Comparable<ModelLift>

public enum ModelLift
extends java.lang.Enum<ModelLift>

Enumeration of the types of lift queries that may be submitted to prediction models at runtime


Enum Constant Summary
LIFT20
          In a training sample, percentage of additional positive counts accurately predicted by a given RTD model with respect to a random model, given the most probable 20% training data.
LIFT50
          In a training sample, percentage of additional positive counts accurately predicted by a given RTD model with respect to a random model, given the most probable 50% training data.

 

Method Summary
static ModelLift valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ModelLift[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

LIFT20

public static final ModelLift LIFT20
In a training sample, percentage of additional positive counts accurately predicted by a given RTD model with respect to a random model, given the most probable 20% training data.

LIFT50

public static final ModelLift LIFT50
In a training sample, percentage of additional positive counts accurately predicted by a given RTD model with respect to a random model, given the most probable 50% training data.

Method Detail

values

public static ModelLift[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ModelLift c : ModelLift.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ModelLift valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-01


Copyright © 2010, Oracle. All rights reserved.