From 211ecc451d367a2744cf0bf67a361ce399061858 Mon Sep 17 00:00:00 2001 From: David Soergel Date: Mon, 20 Jun 2016 16:19:32 -0800 Subject: [PATCH] Update copyright headers for InFlow. Change: 125399142 --- .../learn/dataframe/tensorflow_dataframe.py | 4 +++- .../learn/dataframe/transforms/densify.py | 3 ++- .../learn/dataframe/transforms/sparsify.py | 4 +++- .../contrib/learn/python/learn/experiment.py | 23 +++++++++++-------- .../tests/dataframe/sparsify_densify_test.py | 4 +++- .../dataframe/tensorflow_dataframe_test.py | 4 +++- 6 files changed, 27 insertions(+), 15 deletions(-) diff --git a/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py b/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py index 298b850ad4f..0d946ee9d55 100644 --- a/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py +++ b/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py @@ -1,4 +1,5 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== + """TensorFlowDataFrame implements convenience functions using TensorFlow.""" from __future__ import absolute_import diff --git a/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py b/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py index f3fc5799991..05b7dc915bd 100644 --- a/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py +++ b/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py @@ -1,4 +1,5 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py b/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py index a72bddf3c63..f9cd15e2b3f 100644 --- a/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py +++ b/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py @@ -1,4 +1,5 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== + """Transforms Dense to Sparse Tensor.""" from __future__ import absolute_import diff --git a/tensorflow/contrib/learn/python/learn/experiment.py b/tensorflow/contrib/learn/python/learn/experiment.py index 47bf8388f41..530370f82a6 100644 --- a/tensorflow/contrib/learn/python/learn/experiment.py +++ b/tensorflow/contrib/learn/python/learn/experiment.py @@ -1,16 +1,19 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============================================================================== + """Experiment class collecting information needed for a single training run.""" from __future__ import absolute_import diff --git a/tensorflow/contrib/learn/python/learn/tests/dataframe/sparsify_densify_test.py b/tensorflow/contrib/learn/python/learn/tests/dataframe/sparsify_densify_test.py index ea70e2e620e..e8f10b49a3b 100644 --- a/tensorflow/contrib/learn/python/learn/tests/dataframe/sparsify_densify_test.py +++ b/tensorflow/contrib/learn/python/learn/tests/dataframe/sparsify_densify_test.py @@ -1,4 +1,5 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -11,6 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +# ============================================================================== """Tests for learn.dataframe.transforms.sparsify and densify.""" diff --git a/tensorflow/contrib/learn/python/learn/tests/dataframe/tensorflow_dataframe_test.py b/tensorflow/contrib/learn/python/learn/tests/dataframe/tensorflow_dataframe_test.py index 7cd70afd76a..8da96e5444b 100644 --- a/tensorflow/contrib/learn/python/learn/tests/dataframe/tensorflow_dataframe_test.py +++ b/tensorflow/contrib/learn/python/learn/tests/dataframe/tensorflow_dataframe_test.py @@ -1,4 +1,5 @@ -# Copyright 2016 Google Inc. All Rights Reserved. +# pylint: disable=g-bad-file-header +# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== + """Tests for learn.dataframe.tensorflow_dataframe.""" from __future__ import absolute_import -- GitLab