core.List<core.int> get tensorValAsBytes => convert.base64.decode(tensorVal!);
set tensorValAsBytes(core.List<core.int> bytes_) { tensorVal = convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-'); }