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

pub struct TextData { /* fields omitted */ }

Text data holder.

Implementations

impl TextData[src]

pub fn new<P: AsRef<Path>>(filename: P) -> Result<TextData, TchError>[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]

pub fn char_to_label(&self, c: char) -> Result<u8, TchError>[src]

pub fn iter_shuffle(&self, seq_len: i64, batch_size: i64) -> TextDataIter

Notable traits for TextDataIter

impl Iterator for TextDataIter type Item = Tensor;
[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 RefUnwindSafe for TextData

impl Send for TextData

impl !Sync for TextData

impl Unpin for TextData

impl UnwindSafe for TextData

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, 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.

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