Struct rust_bert::pipelines::translation::TranslationModel[][src]

pub struct TranslationModel { /* fields omitted */ }

Implementations

impl TranslationModel[src]

pub fn new(
    translation_config: TranslationConfig
) -> Result<TranslationModel, RustBertError>
[src]

Build a new TranslationModel

Arguments

  • translation_config - TranslationConfig object containing the resource references (model, vocabulary, configuration), translation options and device placement (CPU/GPU)

Example

use rust_bert::pipelines::translation::{Language, TranslationConfig, TranslationModel};
use tch::Device;

let translation_config =
    TranslationConfig::new(Language::FrenchToEnglish, Device::cuda_if_available());
let mut summarization_model = TranslationModel::new(translation_config)?;

pub fn translate<'a, S>(&self, texts: S) -> Vec<String> where
    S: AsRef<[&'a str]>, 
[src]

Translates texts provided

Arguments

  • input - &[&str] Array of texts to summarize.

Returns

  • Vec<String> Translated texts

Example

use rust_bert::pipelines::generation_utils::LanguageGenerator;
use rust_bert::pipelines::translation::{Language, TranslationConfig, TranslationModel};
use tch::Device;

let translation_config =
    TranslationConfig::new(Language::EnglishToFrench, Device::cuda_if_available());
let model = TranslationModel::new(translation_config)?;

let input = ["This is a sentence to be translated"];

let output = model.translate(&input);

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,