Uri Merhav
Uri Merhav
I realize this isn't the scope of this repo, but the authors of diffVG seem to not respond to issues. If you could share what environment you used to install...
I followed the install procedure as outlined in the docs with python 3.7. On mac it just works. On a ubuntu 18 machine with gpu (CUDA Version: 11.0), it fails...
It's easy enough to show the model's output at time t is effected by samples from t+900 (implying 56.25msec anti-causality). Simply put, if we enter a signal like [1,1,1...,1,inf,inf,inf], and...
``` def build_vm(args): device = torch.device(args.device) if 'swin' in args.backbone: from .swin_transformer import build_swin_backbone backbone = build_swin_backbone(args) else: backbone = build_backbone(args) ``` swin_transformer isn't a defined requirements. I've scoured the...
Great job with this repo. I was able to finetune Llama-2 and it certainly seems to have an effect. Unfortunately the finetune silently accepts all inputs and the documentation states...