decode method

  1. @override
String decode(
  1. List<int> tokens
)
override

Decodes a list of tokens back into text.

Implementation

@override
String decode(List<int> tokens) {
  // Without a real vocabulary this is a no-op placeholder.
  return '[decoded ${tokens.length} tokens]';
}