Struct crfsuite_sys::crfsuite_evaluation_t [] [src]

#[repr(C)]
pub struct crfsuite_evaluation_t { pub num_labels: c_int, pub tbl: *mut crfsuite_label_evaluation_t, pub item_total_correct: c_int, pub item_total_num: c_int, pub item_total_observation: c_int, pub item_total_model: c_int, pub item_accuracy: floatval_t, pub inst_total_correct: c_int, pub inst_total_num: c_int, pub inst_accuracy: floatval_t, pub macro_precision: floatval_t, pub macro_recall: floatval_t, pub macro_fmeasure: floatval_t, }

An overall performance values.

Fields

Number of labels.

Array of label-wise evaluations.

Number of correctly predicted items.

Total number of items.

Total number of occurrences of labels in the gold-standard data.

Total number of predictions.

Item-level accuracy.

Number of correctly predicted instances.

Total number of instances.

Instance-level accuracy.

Macro-averaged precision.

Macro-averaged recall.

Macro-averaged F1 score.

Trait Implementations

impl Debug for crfsuite_evaluation_t
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for crfsuite_evaluation_t
[src]

impl Clone for crfsuite_evaluation_t
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations