mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
Update onnx_api.py
This commit is contained in:
parent
00f417ea06
commit
893b45246b
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user