Kuba Hejhal

Results 7 issues of Kuba Hejhal

Model export is failing on: ```bash File "/venv/lib/python3.10/site-packages/torch2trt-0.4.0-py3.10.egg/torch2trt/torch2trt.py", line 310, in wrapper converter["converter"](ctx) File "/venv/lib/python3.10/site-packages/torch2trt-0.4.0-py3.10.egg/torch2trt/converters/interpolate.py", line 81, in convert_interpolate_trt7 if not isinstance(scales, collections.Sequence): AttributeError: module 'collections' has no attribute 'Sequence'...

The following code: ```python import torch from torch2trt import torch2trt import timm vit_model = timm.create_model( model_name="vit_base_patch16_224_dino", pretrained=True, ) vit_model.to("cuda") vit_model.eval() input_shape = (4, 3, 224, 224) input_data = torch.rand(input_shape, dtype=torch.float32).cuda()...

### System information - **OS Platform and Distribution** - `ArchLinux x86_64`: - **Python version** - `3.10.13`: - **FiftyOne version** - `0.23.2`: - **FiftyOne installed from** - `pip`: ### Commands to...

bug
installation

## Motivation I was trying to export RTMDet model to ONNX using the `torch2onnx` function: https://github.com/open-mmlab/mmdeploy/blob/bc75c9d6c8940aa03d0e1e5b5962bd930478ba77/mmdeploy/apis/pytorch2onnx.py#L11 Which has a `device` parameter. But even though I set it to `cpu`, I...

### Checklist - [X] I have searched related issues but cannot get the expected help. - [X] 2. I have read the [FAQ documentation](https://github.com/open-mmlab/mmdeploy/tree/main/docs/en/faq.md) but cannot get the expected help....

Fixes issue https://github.com/autodistill/autodistill/issues/137

### Search before asking - [X] I have searched the Autodistill [issues](https://github.com/autodistill/autodistill/issues) and found no similar bug report. ### Bug I want to use composed model: ```python model = ComposedDetectionModel(...

bug