Lars Heimdal
Lars Heimdal
Thanks for your awesome work! Hi, I get the following error when building: ``` -- Generating done -- Build files have been written to: /home/larsh/development/pixel-perfect-sfm/build/temp.linux-x86_64-cpython-39 [ 56%] Built target pixsfm...
All keypoints seems to have the same score/confidence, which means all keypoints are used even when it's impossible to know the location. e.g. due to occlusion. Is this the expected...
Converting this dummy model with quantize_target_type="int8" and per_tensor=True throws an error in tflite ```python import torch.nn as nn import torch from tinynn.graph.quantization.quantizer import PostQuantizer from tinynn.converter import TFLiteConverter class StackModel(nn.Module):...
Hi, converting a model that uses `nn.RMSNorm` does not work: ```python class RMSNormModel(nn.Module): def __init__(self): super().__init__() self.norm = nn.RMSNorm(3, 0.1) def forward(self, x): x = x.transpose(1, 3) # [N, H,...
Hi, I get these warnings when running an int8 quantized model on I.MX 8M Plus using the vx delegate: W [HandleLayoutInfer:332]Op 162: default layout inference pass. W [HandleLayoutInfer:332]Op 56: default...