From fcafd420feef8866770ed96eb8ba284a3c35c8c6 Mon Sep 17 00:00:00 2001 From: Yang Zhang Date: Sun, 29 Sep 2019 13:10:06 +0800 Subject: [PATCH] Add missing license header (#3447) --- ppdet/experimental/__init__.py | 14 ++++++++++++++ ppdet/experimental/mixed_precision.py | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/ppdet/experimental/__init__.py b/ppdet/experimental/__init__.py index 5b9d75f99..f70396193 100644 --- a/ppdet/experimental/__init__.py +++ b/ppdet/experimental/__init__.py @@ -1,3 +1,17 @@ +# Copyright (c) 2019 PaddlePaddle 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 +# +# 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. + from __future__ import absolute_import from .mixed_precision import * diff --git a/ppdet/experimental/mixed_precision.py b/ppdet/experimental/mixed_precision.py index 0de2f26c1..d8c333bf4 100644 --- a/ppdet/experimental/mixed_precision.py +++ b/ppdet/experimental/mixed_precision.py @@ -1,3 +1,17 @@ +# Copyright (c) 2019 PaddlePaddle 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 +# +# 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. + from __future__ import absolute_import from __future__ import print_function -- GitLab