We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faec441 commit 807e9f8Copy full SHA for 807e9f8
monai/deploy/core/models/triton_model.py
@@ -51,7 +51,7 @@ def parse_triton_config_pbtxt(pbtxt_path) -> ModelConfig:
51
return model_config
52
53
except Exception as e:
54
- raise ValueError(f"Failed to parse config file {pbtxt_path}: {str(e)}")
+ raise ValueError(f"Failed to parse config file {pbtxt_path}") from e
55
56
57
class TritonModel(Model):
0 commit comments