tfds.deprecated.text.ByteTextEncoder

Byte-encodes text.

Inherits From: TextEncoder

additional_tokens list<str>, list of additional tokens. These will be assigned vocab ids [1, 1+len(additional_tokens)]. Useful for things like "end-of-string" tokens (e.g. "").

additional_tokens

vocab_size Size of the vocabulary. Decode produces ints [1, vocab_size).

Methods

decode

View source

Decodes a list of integers into text.

encode

View source

Encodes text into a list of integers.

load_from_file

View source

Load from file. Inverse of save_to_file.

save_to_file

View source

Store to file. Inverse of load_from_file.