public static enum CRFModel.ConfidenceType extends Enum<CRFModel.ConfidenceType>
Enum Constant and Description |
---|
CONSTRAINED_BP
Constrained Belief Propagation from "Confidence Estimation for Information Extraction" Culotta and McCallum 2004.
|
MULTIPLY
Belief Propagation
|
NONE
No confidence predction.
|
Modifier and Type | Method and Description |
---|---|
static CRFModel.ConfidenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CRFModel.ConfidenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CRFModel.ConfidenceType NONE
public static final CRFModel.ConfidenceType MULTIPLY
public static final CRFModel.ConfidenceType CONSTRAINED_BP
public static CRFModel.ConfidenceType[] values()
for (CRFModel.ConfidenceType c : CRFModel.ConfidenceType.values()) System.out.println(c);
public static CRFModel.ConfidenceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.