FindMatchesParameters class
The parameters to configure the find matches transform.
Constructors
- FindMatchesParameters({double? accuracyCostTradeoff, bool? enforceProvidedLabels, double? precisionRecallTradeoff, String? primaryKeyColumnName})
-
FindMatchesParameters.fromJson(Map<
String, dynamic> json) -
factory
Properties
- accuracyCostTradeoff → double?
-
The value that is selected when tuning your transform for a balance between
accuracy and cost. A value of 0.5 means that the system balances accuracy
and cost concerns. A value of 1.0 means a bias purely for accuracy, which
typically results in a higher cost, sometimes substantially higher. A value
of 0.0 means a bias purely for cost, which results in a less accurate
FindMatchestransform, sometimes with unacceptable accuracy.final - enforceProvidedLabels → bool?
-
The value to switch on or off to force the output to match the provided
labels from users. If the value is
True, thefind matchestransform forces the output to match the provided labels. The results override the normal conflation results. If the value isFalse, thefind matchestransform does not ensure all the labels provided are respected, and the results rely on the trained model.final - hashCode → int
-
The hash code for this object.
no setterinherited
- precisionRecallTradeoff → double?
-
The value selected when tuning your transform for a balance between
precision and recall. A value of 0.5 means no preference; a value of 1.0
means a bias purely for precision, and a value of 0.0 means a bias for
recall. Because this is a tradeoff, choosing values close to 1.0 means very
low recall, and choosing values close to 0.0 results in very low precision.
final
- primaryKeyColumnName → String?
-
The name of a column that uniquely identifies rows in the source table. Used
to help identify matching records.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited