aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Noah Fiedel <nfiedel@google.com>2016-05-03 11:15:20 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-03 12:22:48 -0700
commit768b499811932904b897e4d00bee7ff3853416f5 (patch)
tree5c0b78b91b645b3c1c96a72a88cd66d35dd5a9ca
parentcf5ebf814eb9414c40d8c5323c322d498c7f0eed (diff)
Removes InferenceExample from tensorflow.Example.
Background: InferenceExample was confusing as : (a) it exposed Features rather than Examples and, (b) it was primarily intended for serving optimization. Change: 121402533
-rw-r--r--tensorflow/core/example/example.proto5
-rw-r--r--tensorflow/python/training/training.py1
2 files changed, 0 insertions, 6 deletions
diff --git a/tensorflow/core/example/example.proto b/tensorflow/core/example/example.proto
index 1b5799b4f0..d6e3ff3a8b 100644
--- a/tensorflow/core/example/example.proto
+++ b/tensorflow/core/example/example.proto
@@ -268,8 +268,3 @@ message SequenceExample {
Features context = 1;
FeatureLists feature_lists = 2;
};
-
-message InferenceExample {
- Features context = 1;
- repeated Features features = 2;
-};
diff --git a/tensorflow/python/training/training.py b/tensorflow/python/training/training.py
index d8238ef3e8..c1e4a91373 100644
--- a/tensorflow/python/training/training.py
+++ b/tensorflow/python/training/training.py
@@ -223,7 +223,6 @@ __all__.extend([
"FeatureLists",
"Features",
"FloatList",
- "InferenceExample",
"Int64List",
"LooperThread",
"SaverDef",