Struct rust_bert::pipelines::token_classification::TokenClassificationModel[][src]

pub struct TokenClassificationModel { /* fields omitted */ }
Expand description

Implementations

Build a new TokenClassificationModel

Arguments
  • config - TokenClassificationConfig object containing the resource references (model, vocabulary, configuration) and device placement (CPU/GPU)
Example
use rust_bert::pipelines::token_classification::TokenClassificationModel;

let model = TokenClassificationModel::new(Default::default())?;

Classify tokens in a text sequence

Arguments
  • input - &[&str] Array of texts to extract entities from.
  • consolidate_subtokens - bool flag indicating if subtokens should be consolidated at the token level
  • return_special - bool flag indicating if labels for special tokens should be returned
Returns
  • Vec<Vec<Token>> containing Tokens with associated labels (for example POS tags) for each input provided
Example

let ner_model = TokenClassificationModel::new(Default::default())?;
let input = [
    "My name is Amy. I live in Paris.",
    "Paris is a city in France.",
];
let output = ner_model.predict(&input, true, true);

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.