parent
f07f57a3a8
commit
d48c4d686a
@ -0,0 +1,70 @@
|
||||
# Copyright (c) 2022 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.
|
||||
import argparse
|
||||
import warnings
|
||||
|
||||
import uvicorn
|
||||
from fastapi import FastAPI
|
||||
from starlette.middleware.cors import CORSMiddleware
|
||||
|
||||
from paddlespeech.server.engine.engine_pool import init_engine_pool
|
||||
from paddlespeech.server.restful.api import setup_router as setup_http_router
|
||||
from paddlespeech.server.utils.config import get_config
|
||||
from paddlespeech.server.ws.api import setup_router as setup_ws_router
|
||||
warnings.filterwarnings("ignore")
|
||||
import sys
|
||||
|
||||
app = FastAPI(
|
||||
title="PaddleSpeech Serving API", description="Api", version="0.0.1")
|
||||
app.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=["*"],
|
||||
allow_credentials=True,
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"])
|
||||
|
||||
# change yaml file here
|
||||
config_file = "./conf/application.yaml"
|
||||
config = get_config(config_file)
|
||||
|
||||
# init engine
|
||||
if not init_engine_pool(config):
|
||||
print("Failed to init engine.")
|
||||
sys.exit(-1)
|
||||
|
||||
# get api_router
|
||||
api_list = list(engine.split("_")[0] for engine in config.engine_list)
|
||||
if config.protocol == "websocket":
|
||||
api_router = setup_ws_router(api_list)
|
||||
elif config.protocol == "http":
|
||||
api_router = setup_http_router(api_list)
|
||||
else:
|
||||
raise Exception("unsupported protocol")
|
||||
sys.exit(-1)
|
||||
|
||||
# app needs to operate outside the main function
|
||||
app.include_router(api_router)
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(add_help=True)
|
||||
parser.add_argument(
|
||||
"--workers", type=int, help="workers of server", default=1)
|
||||
args = parser.parse_args()
|
||||
|
||||
uvicorn.run(
|
||||
"start_multi_progress_server:app",
|
||||
host=config.host,
|
||||
port=config.port,
|
||||
debug=True,
|
||||
workers=args.workers)
|
@ -0,0 +1,75 @@
|
||||
# Copyright (c) 2022 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.
|
||||
import time
|
||||
|
||||
from paddlespeech.cli.log import logger
|
||||
from paddlespeech.server.engine.engine_pool import get_engine_pool
|
||||
|
||||
|
||||
def warm_up(engine_and_type: str, warm_up_time: int=3) -> bool:
|
||||
engine_pool = get_engine_pool()
|
||||
|
||||
if "tts" in engine_and_type:
|
||||
tts_engine = engine_pool['tts']
|
||||
flag_online = False
|
||||
if tts_engine.lang == 'zh':
|
||||
sentence = "您好,欢迎使用语音合成服务。"
|
||||
elif tts_engine.lang == 'en':
|
||||
sentence = "Hello and welcome to the speech synthesis service."
|
||||
else:
|
||||
logger.error("tts engine only support lang: zh or en.")
|
||||
sys.exit(-1)
|
||||
|
||||
if engine_and_type == "tts_python":
|
||||
from paddlespeech.server.engine.tts.python.tts_engine import PaddleTTSConnectionHandler
|
||||
elif engine_and_type == "tts_inference":
|
||||
from paddlespeech.server.engine.tts.paddleinference.tts_engine import PaddleTTSConnectionHandler
|
||||
elif engine_and_type == "tts_online":
|
||||
from paddlespeech.server.engine.tts.online.python.tts_engine import PaddleTTSConnectionHandler
|
||||
flag_online = True
|
||||
elif engine_and_type == "tts_online-onnx":
|
||||
from paddlespeech.server.engine.tts.online.onnx.tts_engine import PaddleTTSConnectionHandler
|
||||
flag_online = True
|
||||
else:
|
||||
logger.error("Please check tte engine type.")
|
||||
|
||||
try:
|
||||
logger.info("Start to warm up tts engine.")
|
||||
for i in range(warm_up_time):
|
||||
connection_handler = PaddleTTSConnectionHandler(tts_engine)
|
||||
if flag_online:
|
||||
for wav in connection_handler.infer(
|
||||
text=sentence,
|
||||
lang=tts_engine.lang,
|
||||
am=tts_engine.config.am):
|
||||
logger.info(
|
||||
f"The first response time of the {i} warm up: {connection_handler.first_response_time} s"
|
||||
)
|
||||
break
|
||||
|
||||
else:
|
||||
st = time.time()
|
||||
connection_handler.infer(text=sentence)
|
||||
et = time.time()
|
||||
logger.info(
|
||||
f"The response time of the {i} warm up: {et - st} s")
|
||||
except Exception as e:
|
||||
logger.error("Failed to warm up on tts engine.")
|
||||
logger.error(e)
|
||||
return False
|
||||
|
||||
else:
|
||||
pass
|
||||
|
||||
return True
|
Loading…
Reference in new issue