aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/cloud
diff options
context:
space:
mode:
authorGravatar Misha Brukman <mbrukman@google.com>2018-07-22 12:48:00 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-22 12:50:47 -0700
commit162304f9da4114f5ed3f0e4c27929413e7abc965 (patch)
tree57198c495fbab05f754bc786c9f5aba5dc62323f /tensorflow/contrib/cloud
parent88e560d6fadc1cf23519b00a9de5ed7c973536fd (diff)
[tf.data / Bigtable] Renamed BigTable class to BigtableTable for clarity
This removes the confusion between BigTable and Bigtable naming. Also cleaned up all other uses of BigTable in error messages. PiperOrigin-RevId: 205586899
Diffstat (limited to 'tensorflow/contrib/cloud')
-rw-r--r--tensorflow/contrib/cloud/README.md4
-rw-r--r--tensorflow/contrib/cloud/__init__.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/contrib/cloud/README.md b/tensorflow/contrib/cloud/README.md
index 134ce057f4..a80d8965f3 100644
--- a/tensorflow/contrib/cloud/README.md
+++ b/tensorflow/contrib/cloud/README.md
@@ -1,8 +1,8 @@
# Cloud #
-## BigTable ##
+## Cloud Bigtable ##
-[Google Cloud BigTable](https://cloud.google.com/bigtable/) is a high
+[Google Cloud Bigtable](https://cloud.google.com/bigtable/) is a high
performance storage system that can store and serve training data. This contrib
package contains an experimental integration with TensorFlow.
diff --git a/tensorflow/contrib/cloud/__init__.py b/tensorflow/contrib/cloud/__init__.py
index af81106a68..8efd259946 100644
--- a/tensorflow/contrib/cloud/__init__.py
+++ b/tensorflow/contrib/cloud/__init__.py
@@ -25,8 +25,8 @@ from tensorflow.contrib.cloud.python.ops.bigquery_reader_ops import *
from tensorflow.contrib.cloud.python.ops.gcs_config_ops import *
if os.name != 'nt':
- from tensorflow.contrib.bigtable.python.ops.bigtable_api import BigTable
from tensorflow.contrib.bigtable.python.ops.bigtable_api import BigtableClient
+ from tensorflow.contrib.bigtable.python.ops.bigtable_api import BigtableTable
del os
@@ -34,8 +34,8 @@ from tensorflow.python.util.all_util import remove_undocumented
_allowed_symbols = [
'BigQueryReader',
- 'BigTable',
'BigtableClient',
+ 'BigtableTable',
'BlockCacheParams',
'configure_colab_session',
'configure_gcs',