Struct txtai::labels::Labels[][src]

pub struct Labels { /* fields omitted */ }

Labels definition

Implementations

impl Labels[src]

Labels implementation

pub fn new(url: &str) -> Labels[src]

Creates a Labels instance.

Arguments

  • url - base url of txtai API

pub async fn label(&self, text: &str, labels: &Vec<&str>) -> IndexResults[src]

Applies a zero shot classifier to text using a list of labels. Returns a list of {id: value, score: value} sorted by highest score, where id is the index in labels.

Arguments

  • text - input text
  • labels - list of labels

pub async fn batchlabel(
    &self,
    texts: &Vec<&str>,
    labels: &Vec<&str>
) -> IndexResultsBatch
[src]

Applies a zero shot classifier to list of text using a list of labels. Returns a list of {id: value, score: value} sorted by highest score, where id is the index in labels per text element.

Arguments

  • texts - list of texts
  • labels - list of labels

Auto Trait Implementations

impl RefUnwindSafe for Labels

impl Send for Labels

impl Sync for Labels

impl Unpin for Labels

impl UnwindSafe for Labels

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.