You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have loaded a mdoel.pt and transfer it to onnx.But when I try to run ort.InferenceSession,such error occurs:onnxruntime.capi.onnxruntime_pybind11_state.NotImplemented: [ONNXRuntimeError] : 9 : NOT_IMPLEMENTED : Could not find an implementation for EyeLike(9) node with name '/blocks.0/intra_mossformer/EyeLike'.
To reproduce
My code is as follows:
def inference(args):
device = torch.device('cuda') if args.use_cuda==1 else torch.device('cpu')
print(device)
print('creating model...')
model = network_wrapper(args).se_network
model.to(device)
Update onnx, onnxruntime and PyTorch to the latest versions
For model export, consider testing with torch.onnx.export(..., dynamo=True, report=True) using the latest torch-nightly. Attach the generated report if there is an error. Thanks!
Describe the issue
I have loaded a mdoel.pt and transfer it to onnx.But when I try to run ort.InferenceSession,such error occurs:onnxruntime.capi.onnxruntime_pybind11_state.NotImplemented: [ONNXRuntimeError] : 9 : NOT_IMPLEMENTED : Could not find an implementation for EyeLike(9) node with name '/blocks.0/intra_mossformer/EyeLike'.
To reproduce
My code is as follows:
def inference(args):
device = torch.device('cuda') if args.use_cuda==1 else torch.device('cpu')
print(device)
print('creating model...')
model = network_wrapper(args).se_network
model.to(device)
The original code can be found in : https://github.com/modelscope/ClearerVoice-Studio/tree/main/train/speech_enhancement
the model.pt can be found in: https://huggingface.co/alibabasglab/MossFormerGAN_SE_16K
Thank for your reply
Urgency
No response
Platform
Linux
OS Version
VERSION="20.04.4 LTS (Focal Fossa)"
ONNX Runtime Installation
Built from Source
ONNX Runtime Version or Commit ID
onnx 1.13.0 onnxruntime 1.13.1
ONNX Runtime API
Python
Architecture
X64
Execution Provider
CUDA
Execution Provider Library Version
CUDA Version: 12.2
The text was updated successfully, but these errors were encountered: