From ae89ecc6759b1057797d13fb859615cabdf61e52 Mon Sep 17 00:00:00 2001 From: Jonas Rauber Date: Thu, 8 Sep 2016 13:51:16 +0200 Subject: [PATCH] uint16 was missing --- tensorflow/g3doc/resources/dims_types.md | 1 + 1 file changed, 1 insertion(+) diff --git a/tensorflow/g3doc/resources/dims_types.md b/tensorflow/g3doc/resources/dims_types.md index 76110190d93..3fedbbc0b44 100644 --- a/tensorflow/g3doc/resources/dims_types.md +++ b/tensorflow/g3doc/resources/dims_types.md @@ -59,6 +59,7 @@ Data type | Python type | Description `DT_INT32` | `tf.int32` | 32 bits signed integer. `DT_INT64` | `tf.int64` | 64 bits signed integer. `DT_UINT8` | `tf.uint8` | 8 bits unsigned integer. +`DT_UINT16` | `tf.uint16` | 16 bits unsigned integer. `DT_STRING` | `tf.string` | Variable length byte arrays. Each element of a Tensor is a byte array. `DT_BOOL` | `tf.bool` | Boolean. `DT_COMPLEX64` | `tf.complex64` | Complex number made of two 32 bits floating points: real and imaginary parts.