BaseField
in package
implements
Stringable
uses
FieldConfidenceMixin
AbstractYes
Base class for most fields.
Tags
Table of Contents
Interfaces
- Stringable
Properties
- $confidence : float
- $pageId : int|null
- $reconstructed : bool
- $value : T|null
Methods
- __compare() : bool
- Compares with the value of another field.
- __construct() : mixed
- __toString() : string
- setConfidence() : void
- Sets the confidence score.
Properties
$confidence
public
float
$confidence
The confidence score.
$pageId
public
int|null
$pageId
The document page on which the information was found.
$reconstructed
public
bool
$reconstructed
= false
$value
public
T|null
$value
Raw field value.
Methods
__compare()
Compares with the value of another field.
public
__compare(BaseField<string|int, string|float|int|bool|Polygon> $obj) : bool
Parameters
Return values
bool__construct()
public
__construct(array<string, int|float|string|bool|null|array<string|int, mixed>> $rawPrediction[, int|null $pageId = null ][, bool $reconstructed = false ][, string $valueKey = 'value' ]) : mixed
Parameters
- $rawPrediction : array<string, int|float|string|bool|null|array<string|int, mixed>>
-
Raw prediction array.
- $pageId : int|null = null
-
Page number for multi pages document.
- $reconstructed : bool = false
-
Whether the field was reconstructed.
- $valueKey : string = 'value'
-
Key to use for the value.
__toString()
public
__toString() : string
Return values
string —String representation.
setConfidence()
Sets the confidence score.
protected
setConfidence(array<string, int|float|string|bool|null|array<string|int, mixed>> $rawPrediction) : void
Parameters
- $rawPrediction : array<string, int|float|string|bool|null|array<string|int, mixed>>
-
Raw prediction array.