Package | Description |
---|---|
edu.illinois.cs.cogcomp.lbjava.classify |
Modifier and Type | Class and Description |
---|---|
class |
RealArrayFeature
A real array feature keeps track of its index in the classifier's returned array.
|
class |
RealArrayStringFeature
A real array feature keeps track of its index in the classifier's returned array.
|
class |
RealConjunctiveFeature
Represents the conjunction of two features.
|
class |
RealPrimitiveFeature
A real feature takes on any value representable by a
double . |
class |
RealPrimitiveStringFeature
A real feature takes on any value representable by a
double . |
class |
RealReferrer
A referring real feature is one that has its own identifier, but whose value comes from a
separate feature that it refers to.
|
class |
RealReferringFeature
A referring real feature is one that has its own identifier, but whose value comes from a
separate feature that it refers to.
|
class |
RealReferringStringFeature
A referring real feature is one that has its own identifier, but whose value comes from a
separate feature that it refers to.
|
Modifier and Type | Field and Description |
---|---|
protected RealFeature |
RealReferrer.referent
The feature being referred to.
|
Modifier and Type | Method and Description |
---|---|
RealFeature |
RealReferrer.getReferent()
Returns the value of
RealReferrer.referent . |
RealFeature |
RealFeature.makeReal()
Simply returns this object.
|
abstract RealFeature |
Feature.makeReal()
Returns a
RealFeature whose value is the strength of the current feature, and whose
identifier field contains all the information necessary to distinguish this
feature from other features. |
RealFeature |
DiscreteReferringFeature.makeReal()
Returns a
RealPrimitiveFeature whose value field
is set to the strength of the current feature, and whose DiscreteReferringFeature.identifier field contains
all the information necessary to distinguish this feature from other features. |
RealFeature |
DiscretePrimitiveStringFeature.makeReal()
Returns a
RealPrimitiveFeature whose value field
is set to the strength of the current feature, and whose DiscretePrimitiveStringFeature.identifier field contains
all the information necessary to distinguish this feature from other features. |
RealFeature |
DiscreteConjunctiveFeature.makeReal()
Returns a
RealConjunctiveFeature with exactly the same children as this feature. |
RealFeature |
DiscreteArrayFeature.makeReal()
Returns a
RealArrayFeature whose value field is
set to the strength of the current feature, and whose DiscretePrimitiveFeature.identifier field contains all
the information necessary to distinguish this feature from other features. |
RealFeature |
DiscreteReferringStringFeature.makeReal()
Returns a
RealPrimitiveFeature whose value field
is set to the strength of the current feature, and whose DiscreteReferringStringFeature.identifier field contains
all the information necessary to distinguish this feature from other features. |
RealFeature |
DiscretePrimitiveFeature.makeReal()
Returns a
RealPrimitiveFeature whose value field
is set to the strength of the current feature, and whose DiscretePrimitiveFeature.identifier field contains
all the information necessary to distinguish this feature from other features. |
RealFeature |
DiscreteArrayStringFeature.makeReal()
Returns a
RealArrayFeature whose value field is
set to the strength of the current feature, and whose DiscretePrimitiveStringFeature.identifier field contains all
the information necessary to distinguish this feature from other features. |
abstract RealFeature |
RealFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the value has been
multiplied by the specified number.
|
RealFeature |
RealReferringFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealReferrer.referent field has been multiplied by the specified number. |
RealFeature |
RealPrimitiveStringFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealPrimitiveStringFeature.value
field has been multiplied by the specified number. |
RealFeature |
RealConjunctiveFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the value has been
multiplied by the specified number.
|
RealFeature |
RealArrayFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealPrimitiveFeature.value
field has been multiplied by the specified number. |
RealFeature |
RealReferringStringFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealReferrer.referent field has been multiplied by the specified number. |
RealFeature |
RealPrimitiveFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealPrimitiveFeature.value
field has been multiplied by the specified number. |
RealFeature |
RealArrayStringFeature.multiply(double m)
Returns a new feature object, the same as this one in all respects except the
RealPrimitiveStringFeature.value
field has been multiplied by the specified number. |
Modifier and Type | Method and Description |
---|---|
protected Feature |
Feature.conjunctWith(RealFeature f,
Classifier c)
Create a feature representing the conjunction of this feature with the given argument
feature.
|
Constructor and Description |
---|
RealReferrer(Classifier c,
RealFeature r)
Sets both the identifier and the referent.
|
RealReferrer(String p,
String c,
RealFeature r)
Sets both the identifier and the referent.
|
RealReferringFeature(Classifier c,
ByteString i,
RealFeature r)
Sets both the identifier and the referent.
|
RealReferringFeature(String p,
String c,
ByteString i,
RealFeature r)
Sets both the identifier and the referent.
|
RealReferringStringFeature(Classifier c,
String i,
RealFeature r)
Sets both the identifier and the referent.
|
RealReferringStringFeature(String p,
String c,
String i,
RealFeature r)
Sets both the identifier and the referent.
|
Copyright © 2016. All rights reserved.