#[non_exhaustive]pub struct EntityRecognizerMetadataBuilder { /* private fields */ }
Expand description
A builder for EntityRecognizerMetadata
.
Implementations§
source§impl EntityRecognizerMetadataBuilder
impl EntityRecognizerMetadataBuilder
sourcepub fn number_of_trained_documents(self, input: i32) -> Self
pub fn number_of_trained_documents(self, input: i32) -> Self
The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.
sourcepub fn set_number_of_trained_documents(self, input: Option<i32>) -> Self
pub fn set_number_of_trained_documents(self, input: Option<i32>) -> Self
The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.
sourcepub fn get_number_of_trained_documents(&self) -> &Option<i32>
pub fn get_number_of_trained_documents(&self) -> &Option<i32>
The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.
sourcepub fn number_of_test_documents(self, input: i32) -> Self
pub fn number_of_test_documents(self, input: i32) -> Self
The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.
sourcepub fn set_number_of_test_documents(self, input: Option<i32>) -> Self
pub fn set_number_of_test_documents(self, input: Option<i32>) -> Self
The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.
sourcepub fn get_number_of_test_documents(&self) -> &Option<i32>
pub fn get_number_of_test_documents(&self) -> &Option<i32>
The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.
sourcepub fn evaluation_metrics(
self,
input: EntityRecognizerEvaluationMetrics
) -> Self
pub fn evaluation_metrics( self, input: EntityRecognizerEvaluationMetrics ) -> Self
Detailed information about the accuracy of an entity recognizer.
sourcepub fn set_evaluation_metrics(
self,
input: Option<EntityRecognizerEvaluationMetrics>
) -> Self
pub fn set_evaluation_metrics( self, input: Option<EntityRecognizerEvaluationMetrics> ) -> Self
Detailed information about the accuracy of an entity recognizer.
sourcepub fn get_evaluation_metrics(
&self
) -> &Option<EntityRecognizerEvaluationMetrics>
pub fn get_evaluation_metrics( &self ) -> &Option<EntityRecognizerEvaluationMetrics>
Detailed information about the accuracy of an entity recognizer.
sourcepub fn entity_types(
self,
input: EntityRecognizerMetadataEntityTypesListItem
) -> Self
pub fn entity_types( self, input: EntityRecognizerMetadataEntityTypesListItem ) -> Self
Appends an item to entity_types
.
To override the contents of this collection use set_entity_types
.
Entity types from the metadata of an entity recognizer.
sourcepub fn set_entity_types(
self,
input: Option<Vec<EntityRecognizerMetadataEntityTypesListItem>>
) -> Self
pub fn set_entity_types( self, input: Option<Vec<EntityRecognizerMetadataEntityTypesListItem>> ) -> Self
Entity types from the metadata of an entity recognizer.
sourcepub fn get_entity_types(
&self
) -> &Option<Vec<EntityRecognizerMetadataEntityTypesListItem>>
pub fn get_entity_types( &self ) -> &Option<Vec<EntityRecognizerMetadataEntityTypesListItem>>
Entity types from the metadata of an entity recognizer.
sourcepub fn build(self) -> EntityRecognizerMetadata
pub fn build(self) -> EntityRecognizerMetadata
Consumes the builder and constructs a EntityRecognizerMetadata
.
Trait Implementations§
source§impl Clone for EntityRecognizerMetadataBuilder
impl Clone for EntityRecognizerMetadataBuilder
source§fn clone(&self) -> EntityRecognizerMetadataBuilder
fn clone(&self) -> EntityRecognizerMetadataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for EntityRecognizerMetadataBuilder
impl Default for EntityRecognizerMetadataBuilder
source§fn default() -> EntityRecognizerMetadataBuilder
fn default() -> EntityRecognizerMetadataBuilder
source§impl PartialEq for EntityRecognizerMetadataBuilder
impl PartialEq for EntityRecognizerMetadataBuilder
source§fn eq(&self, other: &EntityRecognizerMetadataBuilder) -> bool
fn eq(&self, other: &EntityRecognizerMetadataBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.