We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abac02b commit 898c8b5Copy full SHA for 898c8b5
lib/src/tensor.dart
@@ -55,8 +55,9 @@ class Tensor {
55
/// Underlying data buffer as bytes.
56
Uint8List get data {
57
final data = cast<Uint8>(tfliteBinding.TfLiteTensorData(_tensor));
58
- return data.asTypedList(tfliteBinding.TfLiteTensorByteSize(_tensor))
59
- .asUnmodifiableView();
+ return data
+ .asTypedList(tfliteBinding.TfLiteTensorByteSize(_tensor))
60
+ .asUnmodifiableView();
61
}
62
63
/// Quantization Params associated with the model, [only Android]
0 commit comments