gcp_bigquery_client/model/
entry.rs

1//! A single entry in the confusion matrix.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct Entry {
6    /// The predicted label. For confidence_threshold > 0, we will also add an entry indicating the number of items under the confidence threshold.
7    pub predicted_label: Option<String>,
8    /// Number of items being predicted as this label.
9    pub item_count: Option<i64>,
10}