kat
kat copied to clipboard
[ICLR2025] Kolmogorov-Arnold Transformer
RuntimeError: CUDA error: an illegal memory access was encountered Compile with `TORCH_USE_CUDA_DSA` to enable device-side assertions. How do I solve this problem while running?
Hi, is fine tuning available?
I tried to install rational_kat_cu in my project venv with the following command: `pip install -e .` Every time I try I receive this: `command 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.2\\bin\\nvcc.exe'...
import timm model = timm.create_model("hf_hub:adamdad/kat_tiny_patch16_224.vitft", pretrained=True) RuntimeError: Unknown model (kat_tiny_patch16_224) sorry,when i want download your model then ,can you help me?
Im only using the activation in a simple model: class KAT(nn.Module): def __init__( self, ) -> None: super().__init__() self.act1 = KAT_Group(mode="identity") def forward(self, x: Tensor) -> Tensor: x = self.act1(x)...