From ac7907e91b8a5656a75a5bc6d01ea97ddf99213b Mon Sep 17 00:00:00 2001 From: Hongyu Liu <43953930+phlrain@users.noreply.github.com> Date: Fri, 19 Jul 2019 15:14:31 +0800 Subject: [PATCH] fix ptb author name bug (#2858) * fix ptb author bug; test=develop * fix ptb author bug; test=develop --- dygraph/ptb_lm/reader.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dygraph/ptb_lm/reader.py b/dygraph/ptb_lm/reader.py index 8c0551d8..1e413b1f 100644 --- a/dygraph/ptb_lm/reader.py +++ b/dygraph/ptb_lm/reader.py @@ -1,4 +1,4 @@ -# Copyright 2015 The TensorFlow Authors. All Rights Reserved. +# 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. @@ -11,8 +11,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. -# ============================================================================== -"""Utilities for parsing PTB text files.""" + from __future__ import absolute_import from __future__ import division from __future__ import print_function -- GitLab