aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/g3doc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-05-31 06:05:04 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-31 06:07:59 -0700
commit7e2e57410eb40c0512dc573955fd256a6c787741 (patch)
treeec345a16ed486ec5a964ac5d6be20bde7d7b401c /tensorflow/contrib/lite/g3doc
parentca4bda919793cc2578e5c0f7440525261da16fdf (diff)
implementation of sparse_to_dense
PiperOrigin-RevId: 198710452
Diffstat (limited to 'tensorflow/contrib/lite/g3doc')
-rw-r--r--tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
index 244919bc87..27e7d25bf1 100644
--- a/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
+++ b/tensorflow/contrib/lite/g3doc/tf_ops_compatibility.md
@@ -595,6 +595,21 @@ Outputs {
}
```
+**SPARSE_TO_DENSE**
+
+```
+Inputs {
+ 0: 0D or 1D or 2D tensor
+ 1: 1D tensor
+ 2: 0D or 1D tensor
+ 3: 0D tensor
+ 4: a boolean value
+}
+Outputs {
+ 0: Dense Tensor of shape output_shape. Has the same type as sparse_values.
+}
+```
+
**SPLIT**
```