Skip to content

Commit

Permalink
Merge commit for internal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kirilg committed Oct 27, 2017
2 parents 28b8c75 + a619a88 commit b3af5b5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tensorflow
Submodule tensorflow updated 1056 files
5 changes: 2 additions & 3 deletions tensorflow_serving/g3doc/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ If you have the prerequisites for Bazel, those instructions consist of the
following steps:

1. Download the relevant binary from
[here](https://github.com/bazelbuild/bazel/releases).
Let's say you downloaded bazel-0.5.4-installer-linux-x86_64.sh. You would
execute:
[here](https://github.com/bazelbuild/bazel/releases). Let's say you
downloaded bazel-0.5.4-installer-linux-x86_64.sh. You would execute:

<pre>
cd ~/Downloads
Expand Down
1 change: 1 addition & 0 deletions tensorflow_serving/model_servers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ cc_binary(
"@org_tensorflow//tensorflow/core:lib",
"@org_tensorflow//tensorflow/core/platform/cloud:gcs_file_system",
"@org_tensorflow//tensorflow/core/platform/hadoop:hadoop_file_system",
"@org_tensorflow//tensorflow/core/platform/s3:s3_file_system",
"//tensorflow_serving/apis:prediction_service_proto",
"//tensorflow_serving/config:model_server_config_proto",
"//tensorflow_serving/core:availability_preserving_policy",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_serving/tools/docker/Dockerfile.devel-gpu
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN apt-get install python-pip python-dev build-essential
RUN apt-get install python-pip python-dev build-essential

#RUN curl -fSsL -O https://bootstrap.pypa.io/get-pip.py && \
# python get-pip.py && \
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_serving/util/class_registration.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class ClassRegistry {
->New());
if (!any_config.UnpackTo(config.get())) {
return errors::InvalidArgument("Malformed content of Any: ",
any_config.DebugString());
any_config.DebugString());
}
return Create(*config, std::forward<AdditionalFactoryArgs>(args)...,
result);
Expand Down
2 changes: 1 addition & 1 deletion tf_models
Submodule tf_models updated 43 files
+3 −2 CODEOWNERS
+2 −0 official/README.md
+24 −6 official/mnist/mnist.py
+1 −0 official/mnist/mnist_test.py
+2 −2 official/resnet/cifar10_download_and_extract.py
+63 −59 official/resnet/cifar10_main.py
+2 −2 official/resnet/cifar10_test.py
+39 −41 official/resnet/imagenet_main.py
+2 −1 official/resnet/imagenet_test.py
+1 −3 official/resnet/resnet_model.py
+52 −0 official/wide_deep/README.md
+0 −0 official/wide_deep/__init__.py
+71 −0 official/wide_deep/data_download.py
+231 −0 official/wide_deep/wide_deep.py
+20 −0 official/wide_deep/wide_deep_test.csv
+106 −0 official/wide_deep/wide_deep_test.py
+58 −36 research/README.md
+5 −4 research/audioset/README.md
+2 −2 research/audioset/vggish_train_demo.py
+4 −0 research/delf/.gitignore
+67 −0 research/delf/EXTRACTION_MATCHING.md
+98 −0 research/delf/INSTALL_INSTRUCTIONS.md
+91 −0 research/delf/README.md
+29 −0 research/delf/delf/__init__.py
+0 −0 research/delf/delf/protos/__init__.py
+53 −0 research/delf/delf/protos/datum.proto
+64 −0 research/delf/delf/protos/delf_config.proto
+22 −0 research/delf/delf/protos/feature.proto
+0 −0 research/delf/delf/python/__init__.py
+109 −0 research/delf/delf/python/datum_io.py
+72 −0 research/delf/delf/python/datum_io_test.py
+399 −0 research/delf/delf/python/delf_v1.py
+25 −0 research/delf/delf/python/examples/delf_config_example.pbtxt
+191 −0 research/delf/delf/python/examples/extract_features.py
+141 −0 research/delf/delf/python/examples/match_images.py
+ research/delf/delf/python/examples/matched_images_example.png
+383 −0 research/delf/delf/python/feature_extractor.py
+132 −0 research/delf/delf/python/feature_extractor_test.py
+196 −0 research/delf/delf/python/feature_io.py
+97 −0 research/delf/delf/python/feature_io_test.py
+25 −0 research/delf/setup.py
+1 −1 research/object_detection/train.py
+1 −1 research/syntaxnet/tensorflow

0 comments on commit b3af5b5

Please sign in to comment.