results
results
¶
Classes:
| Name | Description |
|---|---|
AnonymizerResult |
Result returned by full anonymization runs. |
PreviewResult |
Result returned by preview runs. |
AnonymizerResult(dataframe, trace_dataframe, failed_records)
dataclass
¶
Bases: _DisplayMixin
Result returned by full anonymization runs.
Attributes:
| Name | Type | Description |
|---|---|---|
dataframe |
DataFrame
|
User-facing columns only (text, replaced/rewritten text, scores). |
trace_dataframe |
DataFrame
|
Full pipeline trace including all internal columns. |
failed_records |
list[FailedRecord]
|
Records that failed during pipeline processing. |
PreviewResult(dataframe, trace_dataframe, failed_records, preview_num_records)
dataclass
¶
Bases: _DisplayMixin
Result returned by preview runs.
Attributes:
| Name | Type | Description |
|---|---|---|
dataframe |
DataFrame
|
User-facing columns only (text, replaced/rewritten text, scores). |
trace_dataframe |
DataFrame
|
Full pipeline trace including all internal columns. |
failed_records |
list[FailedRecord]
|
Records that failed during pipeline processing. |
preview_num_records |
int
|
Number of records requested for the preview. |