Santiago Castro

Results 889 issues of Santiago Castro

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

Hey, I believe there's a bug when evaluating hard-negative augmented training. Your code uses open_clip, which in turn supports both the original ViT-B/32 architecture, which uses QuickGELU (they name it...

Hey, I believe there's a bug in the evaluation. NegCLIP code is based on open_clip, which in turn supports both the original ViT-B/32 architecture, which uses QuickGELU (they name it...

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

I found there were a bunch. Found them with: ```bash find -name '*.py' -exec grep --color=always -HnIie '".*" ".*"' {} \; | less -r ```

XGBoost for Python depends on `nvidia-nccl-cu12`, which is for CUDA 12. I have a PyTorch 2.4.0 installation for CUDA 11.8, but when I use distributed mode, PyTorch picks up on...

I have a situation in which I'd like to ignore the jump host configuration set in my SSH config when using the ET client, but not when using the SSH...

When automatically choosing the number of parallel workers, [`os.sched_getaffinity`](https://docs.python.org/3/library/os.html#os.sched_getaffinity) is a better choice than the currently used `os.cpu_count`. The former uses a process' assigned CPU count. See [this Stack Overflow...