[][src]Struct tch::data::TextData

pub struct TextData { /* fields omitted */ }

Text data holder.

Methods

impl TextData[src]

pub fn new<P: AsRef<Path>>(filename: P) -> Result<TextData>[src]

Creates a text dataset from a file.

pub fn labels(&self) -> i64[src]

Returns the number of different characters/labels used by the dataset.

pub fn data(&self) -> Tensor[src]

Returns a shallow copy of the data.

pub fn label_to_char(&self, label: i64) -> char[src]

Important traits for TextDataIter
pub fn iter_shuffle(&self, seq_len: i64, batch_size: i64) -> TextDataIter[src]

Returns a batch iterator over the dataset. Each sample is made of seq_len characters.

Trait Implementations

impl Debug for TextData[src]

Auto Trait Implementations

impl Send for TextData

impl !Sync for TextData

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.