aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-24 11:29:08 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-24 11:32:20 -0800
commit7f8e600bfb4ff5973bd1ec178b65538e2446fb69 (patch)
tree2673febed25dfaa45a8dcea5dc32a3de1a74bb45 /tensorflow/contrib/lite
parent98c4a4efaf836e120505b4f1d52d7508802e004e (diff)
fix typos in schema.fbs comments.
PiperOrigin-RevId: 183114994
Diffstat (limited to 'tensorflow/contrib/lite')
-rw-r--r--tensorflow/contrib/lite/schema/schema.fbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/lite/schema/schema.fbs b/tensorflow/contrib/lite/schema/schema.fbs
index da7db9bcf4..2172135f49 100644
--- a/tensorflow/contrib/lite/schema/schema.fbs
+++ b/tensorflow/contrib/lite/schema/schema.fbs
@@ -53,12 +53,12 @@ table Tensor {
type:TensorType;
// An index that refers to the buffers table at the root of the model. Or,
// if there is no data buffer associated (i.e. intermediate results), then
- // this is 0 (which refers to an always existant empty buffer).
+ // this is 0 (which refers to an always existent empty buffer).
//
// The data_buffer itself is an opaque container, with the assumption that the
// target device is little-endian. In addition, all builtin operators assume
// the memory is ordered such that if `shape` is [4, 3, 2], then index
- // [i, j, k] maps to data_buffer[i*3*2 + j*3 + k].
+ // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
buffer:uint;
name:string; // For debugging and importing back into tensorflow.
quantization:QuantizationParameters; // Optional.