Umar Butler

Results 114 comments of Umar Butler

I would recommend checking out [OnnxSlim](https://github.com/tsingmicro-toolchain/OnnxSlim). I was able to install it on Python 3.12 without any issues.

**This is a _temporary_ workaround** for anyone else with the same problem: 1. Create a new empty migration file in your core app. 1. Paste in this: ```python # Generated...

The link provided will no longer as I decided to replace the LaTeX but it is really unfortunate to lose that.

Shukran Omar, this was a great starting point for me. It might be helpful for me to give you a bit more detail about what I'm trying to do. In...

``` class InvalidApiKeyError(NotAuthorizedException): detail = "Invalid API key" def __init__(self, *args, **kwargs): super().__init__( *args, **{ "extra": "The API key you provided is invalid, incorrect, expired, has been revoked, or your...

🤦 This one is my bad, I set a default exception handler for debugging purposes and forgot I had set it.

I'm reopening this because it turns out this does actually happen even without that custom exception handler 😆 However, this does work as a workaround: ``` class InvalidApiKeyError(NotAuthorizedException): detail =...

+1 I just got this error on torch-tensorrt 2.4.0.

@narendasan Same issue just arose from "torch_tensorrt\dynamo\conversion\impl\elementwise\base.py", line 129, in convert_binary_elementwise: `rhs_val = np.array([rhs_val], dtype=_enums.dtype._from(lhs_dtype).to(np.dtype))`. Solution was to change to `rhs_val = np.array([rhs_val], dtype=_enums.dtype._from(lhs_dtype).to(np.dtype, use_default = True))` (addition of `use_default=True`)...