From 9d6b2e0abad5e94a0abc9eb67e44fd3bd839e72f Mon Sep 17 00:00:00 2001 From: "Yuan (Terry) Tang" Date: Fri, 1 Jul 2016 23:40:05 -0400 Subject: Updated tflearn examples copyright (#3156) --- AUTHORS | 1 + tensorflow/examples/skflow/digits.py | 2 +- tensorflow/examples/skflow/dnn_autoencoder_iris.py | 2 +- tensorflow/examples/skflow/hdf5_classification.py | 2 +- tensorflow/examples/skflow/iris_custom_model.py | 2 +- tensorflow/examples/skflow/iris_run_config.py | 2 +- tensorflow/examples/skflow/iris_val_based_early_stopping.py | 2 +- tensorflow/examples/skflow/iris_with_pipeline.py | 2 +- tensorflow/examples/skflow/language_model.py | 2 +- tensorflow/examples/skflow/mnist_rnn.py | 2 +- tensorflow/examples/skflow/mnist_weights.py | 2 +- tensorflow/examples/skflow/multioutput_regression.py | 2 +- tensorflow/examples/skflow/multiple_gpu.py | 2 +- tensorflow/examples/skflow/neural_translation.py | 2 +- tensorflow/examples/skflow/neural_translation_word.py | 2 +- tensorflow/examples/skflow/out_of_core_data_classification.py | 2 +- tensorflow/examples/skflow/text_classification.py | 2 +- tensorflow/examples/skflow/text_classification_builtin_rnn_model.py | 2 +- tensorflow/examples/skflow/text_classification_character_cnn.py | 2 +- tensorflow/examples/skflow/text_classification_character_rnn.py | 2 +- tensorflow/examples/skflow/text_classification_cnn.py | 2 +- tensorflow/examples/skflow/text_classification_save_restore.py | 2 +- 22 files changed, 22 insertions(+), 21 deletions(-) diff --git a/AUTHORS b/AUTHORS index e3289a50bc..a46ae7e616 100644 --- a/AUTHORS +++ b/AUTHORS @@ -7,3 +7,4 @@ # The email address is not required for organizations. Google Inc. +Yuan Tang terrytangyuan@gmail.com diff --git a/tensorflow/examples/skflow/digits.py b/tensorflow/examples/skflow/digits.py index b3c684b7df..0ffd5dc9d7 100644 --- a/tensorflow/examples/skflow/digits.py +++ b/tensorflow/examples/skflow/digits.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# Copyright 2016 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/examples/skflow/dnn_autoencoder_iris.py b/tensorflow/examples/skflow/dnn_autoencoder_iris.py index c4383ae608..284bd9e58a 100644 --- a/tensorflow/examples/skflow/dnn_autoencoder_iris.py +++ b/tensorflow/examples/skflow/dnn_autoencoder_iris.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/hdf5_classification.py b/tensorflow/examples/skflow/hdf5_classification.py index 0a4a7fd731..0f42a1654a 100644 --- a/tensorflow/examples/skflow/hdf5_classification.py +++ b/tensorflow/examples/skflow/hdf5_classification.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/iris_custom_model.py b/tensorflow/examples/skflow/iris_custom_model.py index 009e375274..c5c8381f61 100644 --- a/tensorflow/examples/skflow/iris_custom_model.py +++ b/tensorflow/examples/skflow/iris_custom_model.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/iris_run_config.py b/tensorflow/examples/skflow/iris_run_config.py index c678c7c738..93fa121322 100644 --- a/tensorflow/examples/skflow/iris_run_config.py +++ b/tensorflow/examples/skflow/iris_run_config.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/iris_val_based_early_stopping.py b/tensorflow/examples/skflow/iris_val_based_early_stopping.py index 05dfa96a07..adacb1265d 100644 --- a/tensorflow/examples/skflow/iris_val_based_early_stopping.py +++ b/tensorflow/examples/skflow/iris_val_based_early_stopping.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/iris_with_pipeline.py b/tensorflow/examples/skflow/iris_with_pipeline.py index 5535cd9e3b..322c5e859d 100644 --- a/tensorflow/examples/skflow/iris_with_pipeline.py +++ b/tensorflow/examples/skflow/iris_with_pipeline.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/language_model.py b/tensorflow/examples/skflow/language_model.py index dcd65bf9f6..7ee709fd91 100644 --- a/tensorflow/examples/skflow/language_model.py +++ b/tensorflow/examples/skflow/language_model.py @@ -1,6 +1,6 @@ # encoding: utf-8 -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/mnist_rnn.py b/tensorflow/examples/skflow/mnist_rnn.py index a6a594fad5..ddd6d7910f 100644 --- a/tensorflow/examples/skflow/mnist_rnn.py +++ b/tensorflow/examples/skflow/mnist_rnn.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/mnist_weights.py b/tensorflow/examples/skflow/mnist_weights.py index b0c2ea583e..36f7b1c9ff 100644 --- a/tensorflow/examples/skflow/mnist_weights.py +++ b/tensorflow/examples/skflow/mnist_weights.py @@ -1,4 +1,4 @@ -#t Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +#t 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/examples/skflow/multioutput_regression.py b/tensorflow/examples/skflow/multioutput_regression.py index c0ddf1cf30..ef76a6ce27 100644 --- a/tensorflow/examples/skflow/multioutput_regression.py +++ b/tensorflow/examples/skflow/multioutput_regression.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/multiple_gpu.py b/tensorflow/examples/skflow/multiple_gpu.py index 1168184a38..50e4b8252e 100644 --- a/tensorflow/examples/skflow/multiple_gpu.py +++ b/tensorflow/examples/skflow/multiple_gpu.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/neural_translation.py b/tensorflow/examples/skflow/neural_translation.py index 7832767145..ded54608ba 100644 --- a/tensorflow/examples/skflow/neural_translation.py +++ b/tensorflow/examples/skflow/neural_translation.py @@ -1,6 +1,6 @@ # encoding: utf-8 -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/neural_translation_word.py b/tensorflow/examples/skflow/neural_translation_word.py index 90c73f0ba5..185835c139 100644 --- a/tensorflow/examples/skflow/neural_translation_word.py +++ b/tensorflow/examples/skflow/neural_translation_word.py @@ -1,6 +1,6 @@ # encoding: utf-8 -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/out_of_core_data_classification.py b/tensorflow/examples/skflow/out_of_core_data_classification.py index 6328941e6d..86562fab46 100644 --- a/tensorflow/examples/skflow/out_of_core_data_classification.py +++ b/tensorflow/examples/skflow/out_of_core_data_classification.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification.py b/tensorflow/examples/skflow/text_classification.py index fe19e273d3..3d34617016 100644 --- a/tensorflow/examples/skflow/text_classification.py +++ b/tensorflow/examples/skflow/text_classification.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification_builtin_rnn_model.py b/tensorflow/examples/skflow/text_classification_builtin_rnn_model.py index fef5a2d9b3..afaa0bfff7 100644 --- a/tensorflow/examples/skflow/text_classification_builtin_rnn_model.py +++ b/tensorflow/examples/skflow/text_classification_builtin_rnn_model.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification_character_cnn.py b/tensorflow/examples/skflow/text_classification_character_cnn.py index 998ed30807..be627f316e 100644 --- a/tensorflow/examples/skflow/text_classification_character_cnn.py +++ b/tensorflow/examples/skflow/text_classification_character_cnn.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification_character_rnn.py b/tensorflow/examples/skflow/text_classification_character_rnn.py index a3de8aa42b..864f678d4e 100644 --- a/tensorflow/examples/skflow/text_classification_character_rnn.py +++ b/tensorflow/examples/skflow/text_classification_character_rnn.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification_cnn.py b/tensorflow/examples/skflow/text_classification_cnn.py index 0cbed33ef1..46238d2f03 100644 --- a/tensorflow/examples/skflow/text_classification_cnn.py +++ b/tensorflow/examples/skflow/text_classification_cnn.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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/examples/skflow/text_classification_save_restore.py b/tensorflow/examples/skflow/text_classification_save_restore.py index 9cabc32205..2b2831eb52 100644 --- a/tensorflow/examples/skflow/text_classification_save_restore.py +++ b/tensorflow/examples/skflow/text_classification_save_restore.py @@ -1,4 +1,4 @@ -# Copyright 2015-present The Scikit Flow Authors. All Rights Reserved. +# 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. -- cgit v1.2.3