ArseniuML
ArseniuML
### Describe the workflow you want to enable I have a dataset with huge number of duplicates - so in order to speed-up learning process I prefer to remove these...
From main.cu: ``` // after get pair datas, we can start to do real convolution! // in static inference engine, you need to split pair-gen and conv to // different...
At the end of TENSORRT_INT8_GUDE you write: > write torch.fx based torch->trt conversion > After PTQ/QAT model ready, we can use [torch.fx.Interpreter](https://pytorch.org/docs/stable/fx.html#torch.fx.Interpreter) to transform traced pytorch model to tensorrt. >...
## Description 1. Create TensorRT network with INonZeroLayer from scratch. Save TensorRT engine. 2. Deserialize cuda engine and try to create execution context. 3. Execution context = nullptr. Code: ```...
As I can see, IngroupIndicesFunction from sst_ops.py is a random number generator. Why do you use it? I can imagine, that RNG can be useful for training, but you use...
I am trying to convert FSDv2 to ONNX (and next to TensorRT), but there is an error: RuntimeError: ONNX export failed on an operator with unrecognized namespace torch_scatter::scatter_max. If you...
I want to test FSDv2 with downloaded Waymo weights on my point clouds. However, my LIDAR outputs intensity as UINT8 (0-255), and in Waymo data intensity maximum in various frames...
您是手动创建此代码,还是自动将其迁移到 SE-SSD 的 TensorRT Pytorch 版本?
### Actions before raising this issue - [X] I searched the existing issues and did not find anything similar. - [X] I read/searched [the docs](https://docs.cvat.ai/docs/) ### Is your feature request...
I want to accelerate another detectors, using spconv, such as FSDv2 from: https://github.com/tusen-ai/SST However, I cant deploy FSDv2 to TensorRT, because TensorRT seems not to support Sparse Convolution. Here is...