From f0e66c4869c66b99c425438ad5c06b296f52d73a Mon Sep 17 00:00:00 2001 From: qinduohao Date: Thu, 18 Apr 2019 11:41:05 +0800 Subject: [PATCH] fix encoding typo --- AutoDL Design/autodl.py | 2 +- AutoDL Design/autodl_agent.py | 2 +- AutoDL Design/cifar/dataset_maker.py | 2 +- AutoDL Design/distribute_generator.py | 2 +- AutoDL Design/inception_train/models/inception.py | 2 +- AutoDL Design/inception_train/models/layers.py | 2 +- AutoDL Design/inception_train/models/ops.py | 2 +- AutoDL Design/inception_train/nn.py | 2 +- AutoDL Design/inception_train/preprocess.py | 2 +- AutoDL Design/inception_train/reader.py | 2 +- AutoDL Design/inception_train/train.py | 2 +- AutoDL Design/inception_train/utils.py | 2 +- AutoDL Design/main.py | 2 +- AutoDL Design/policy_model.py | 2 +- AutoDL Design/reinforce_policy_gradient.py | 2 +- AutoDL Design/simple_main.py | 2 +- AutoDL Design/utils.py | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/AutoDL Design/autodl.py b/AutoDL Design/autodl.py index dde6edf..444d0e5 100644 --- a/AutoDL Design/autodl.py +++ b/AutoDL Design/autodl.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/autodl_agent.py b/AutoDL Design/autodl_agent.py index 39fc826..9ef7f0e 100755 --- a/AutoDL Design/autodl_agent.py +++ b/AutoDL Design/autodl_agent.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/cifar/dataset_maker.py b/AutoDL Design/cifar/dataset_maker.py index bc7d895..e0a3aa1 100644 --- a/AutoDL Design/cifar/dataset_maker.py +++ b/AutoDL Design/cifar/dataset_maker.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/distribute_generator.py b/AutoDL Design/distribute_generator.py index 945d327..824c162 100644 --- a/AutoDL Design/distribute_generator.py +++ b/AutoDL Design/distribute_generator.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/models/inception.py b/AutoDL Design/inception_train/models/inception.py index dc8b1b2..2a30010 100644 --- a/AutoDL Design/inception_train/models/inception.py +++ b/AutoDL Design/inception_train/models/inception.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/models/layers.py b/AutoDL Design/inception_train/models/layers.py index 8642cca..ca8ce53 100644 --- a/AutoDL Design/inception_train/models/layers.py +++ b/AutoDL Design/inception_train/models/layers.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/models/ops.py b/AutoDL Design/inception_train/models/ops.py index 47a5a9f..7e41c22 100644 --- a/AutoDL Design/inception_train/models/ops.py +++ b/AutoDL Design/inception_train/models/ops.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/nn.py b/AutoDL Design/inception_train/nn.py index cd69729..a79a7c4 100644 --- a/AutoDL Design/inception_train/nn.py +++ b/AutoDL Design/inception_train/nn.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/preprocess.py b/AutoDL Design/inception_train/preprocess.py index 33c94f6..c14368e 100644 --- a/AutoDL Design/inception_train/preprocess.py +++ b/AutoDL Design/inception_train/preprocess.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/reader.py b/AutoDL Design/inception_train/reader.py index 3e97050..0b00278 100644 --- a/AutoDL Design/inception_train/reader.py +++ b/AutoDL Design/inception_train/reader.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rig hts Reserved # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/train.py b/AutoDL Design/inception_train/train.py index 1506b8e..8ffaa0c 100644 --- a/AutoDL Design/inception_train/train.py +++ b/AutoDL Design/inception_train/train.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/inception_train/utils.py b/AutoDL Design/inception_train/utils.py index 24f94e8..30dc859 100644 --- a/AutoDL Design/inception_train/utils.py +++ b/AutoDL Design/inception_train/utils.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/main.py b/AutoDL Design/main.py index 93f802c..19937c6 100644 --- a/AutoDL Design/main.py +++ b/AutoDL Design/main.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/policy_model.py b/AutoDL Design/policy_model.py index e253aad..9582516 100644 --- a/AutoDL Design/policy_model.py +++ b/AutoDL Design/policy_model.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/reinforce_policy_gradient.py b/AutoDL Design/reinforce_policy_gradient.py index c117a67..1537b5c 100644 --- a/AutoDL Design/reinforce_policy_gradient.py +++ b/AutoDL Design/reinforce_policy_gradient.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/simple_main.py b/AutoDL Design/simple_main.py index 9b03f2c..1fb78f8 100755 --- a/AutoDL Design/simple_main.py +++ b/AutoDL Design/simple_main.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/AutoDL Design/utils.py b/AutoDL Design/utils.py index 5aeb69f..67b9352 100644 --- a/AutoDL Design/utils.py +++ b/AutoDL Design/utils.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*- encoding:utf-8 -*- +# -*- coding:utf-8 -*- # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve. # # Licensed under the Apache License, Version 2.0 (the "License"); -- GitLab