Update onnx_api.py

This commit is contained in:
RVC-Boss 2024-08-08 18:05:05 +08:00 committed by GitHub
parent 00f417ea06
commit 893b45246b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,10 +86,10 @@ class G2PWOnnxConverter:
sess_options.graph_optimization_level = onnxruntime.GraphOptimizationLevel.ORT_ENABLE_ALL sess_options.graph_optimization_level = onnxruntime.GraphOptimizationLevel.ORT_ENABLE_ALL
sess_options.execution_mode = onnxruntime.ExecutionMode.ORT_SEQUENTIAL sess_options.execution_mode = onnxruntime.ExecutionMode.ORT_SEQUENTIAL
sess_options.intra_op_num_threads = 2 sess_options.intra_op_num_threads = 2
self.session_g2pW = onnxruntime.InferenceSession( try:
os.path.join(uncompress_path, 'g2pW.onnx'), self.session_g2pW = onnxruntime.InferenceSession(os.path.join(uncompress_path, 'g2pW.onnx'),sess_options=sess_options, providers=['CUDAExecutionProvider', 'CPUExecutionProvider'])
sess_options=sess_options, providers=['CUDAExecutionProvider', 'CPUExecutionProvider']) except:
# sess_options=sess_options) self.session_g2pW = onnxruntime.InferenceSession(os.path.join(uncompress_path, 'g2pW.onnx'),sess_options=sess_options, providers=['CPUExecutionProvider'])
self.config = load_config( self.config = load_config(
config_path=os.path.join(uncompress_path, 'config.py'), config_path=os.path.join(uncompress_path, 'config.py'),
use_default=True) use_default=True)