diff --git a/api/onnx_web/params.py b/api/onnx_web/params.py index a00f2a1f..b2592ee2 100644 --- a/api/onnx_web/params.py +++ b/api/onnx_web/params.py @@ -66,7 +66,7 @@ class DeviceParams: self.options = options def __str__(self) -> str: - return '%s - %s' % (self.device, self.provider) + return '%s - %s (%s)' % (self.device, self.provider, self.options) def torch_device(self) -> str: if self.device.startswith('cuda'):