pub struct SentenceEmbeddingsModel { /* private fields */ }
Expand description

SentenceEmbeddingsModel to perform sentence embeddings

It is made of the following blocks:

  • transformer: Base transformer model
  • pooling: Pooling layer
  • dense (optional): Linear (feed forward) layer
  • normalization (optional): Embeddings normalization

Implementations

Build a new SentenceEmbeddingsModel

Arguments
  • config - SentenceEmbeddingsConfig object containing the resource references (model, vocabulary, configuration) and device placement (CPU/GPU)

Sets the tokenizer’s truncation strategy

Tokenizes the inputs

Computes sentence embeddings, outputs Tensor.

Computes sentence embeddings.

Computes sentence embeddings, also outputs AttentionOutputs.

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.