Open mr17m opened 1 week ago
Sorry for the late response. How do you install the causal-conv-1d
?
Please install it via pip install -e causal-conv1d
Thank you for your answer. I installed using pip install causal-conv1d
but your solution solved my problem.
Hello,
Thank you for your interesting work. In order to employ VideoMamba_middle_mask_16frame in my network as the encoder I faced the following error:
the error raised in the following line:
conv1d_out = causal_conv1d_cuda.causal_conv1d_fwd(x, conv1d_weight, conv1d_bias, True)
and the type of "x" is
<class 'torch.Tensor'>
, the type of "conv1d_weight" is<class 'torch.Tensor'>
and the type of "conv1d_bias" is<class 'torch.nn.parameter.Parameter'>
I have loaded the model video_mamba_middle _mask with 16 frames as below in my model:
The input tensor to my model has the shape of [b=1, C=3, T=16, H=224, W=224] and the type of the input to the encoder is <class 'torch.Tensor'>.
Please let me know how to fix the problem.
Thank you