From 7c9208765f3ca5dc573ed9a977cb1107d00cb82c Mon Sep 17 00:00:00 2001 From: huangyuxin Date: Fri, 15 Jul 2022 19:48:00 +0800 Subject: [PATCH] fix audio,test=doc --- paddlespeech/audio/__init__.py | 3 +++ paddlespeech/audio/text/__init__.py | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 paddlespeech/audio/text/__init__.py diff --git a/paddlespeech/audio/__init__.py b/paddlespeech/audio/__init__.py index 6184c1dd..83be8e32 100644 --- a/paddlespeech/audio/__init__.py +++ b/paddlespeech/audio/__init__.py @@ -14,6 +14,9 @@ from . import compliance from . import datasets from . import features +from . import text +from . import transform +from . import streamdata from . import functional from . import io from . import metric diff --git a/paddlespeech/audio/text/__init__.py b/paddlespeech/audio/text/__init__.py new file mode 100644 index 00000000..185a92b8 --- /dev/null +++ b/paddlespeech/audio/text/__init__.py @@ -0,0 +1,13 @@ +# Copyright (c) 2021 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. -- GitLab