Kevin Turner

Results 201 comments of Kevin Turner

As your retrieval and storage backend seems [disinclined](https://github.com/huggingface/huggingface_hub/issues/1342#issuecomment-1431473756) to make cross-project links in the storage layer, one alternative would be to push those links to the application layer: allow a...

As Wauplin pointed out, symlinks may get you in trouble when the link target disappears from the cache. Hard links will work better, and I _think_ all our expected platforms...

You may also reference InvokeAI's update for the diffusers 0.12 attention API: https://github.com/invoke-ai/InvokeAI/pull/2385 A few caveats: - we've only implemented the _replacement_ (swap) control so far. _Refinement_ and _re-weight_ are...

I see `timm` in there, and our dependencies are pinned to an old version of that, but upgrading that to the latest didn't help. The top line is in torch.jit,...

if that line number can be trusted, it's falling over when torch jitscript is trying to copy over the docstring reference? https://github.com/pytorch/pytorch/blob/e9ebda29d87ce0916ab08c06ab26fd3766a870e5/torch/jit/_script.py#L1345 that is, uh, not something I expected.

https://pytorch.org/docs/stable/jit.html#disable-jit-for-debugging — using `PYTORCH_JIT=0` to disable it allows the process to start, but it's obviously not a _fix._

``` Thread 1 "python" received signal SIGSEGV, Segmentation fault. 0x00000000005266a0 in _PyDictKeys_StringLookup (dk=0x0, key='__doc__') at ../Objects/dictobject.c:1011 1011 ../Objects/dictobject.c: No such file or directory. (gdb) bt #0 0x00000000005266a0 in _PyDictKeys_StringLookup (dk=0x0,...

building a new version of Python 3.11.4 (using pyenv) instead of using the python3.11 in Ubuntu LTS seems to have fixed things. So I guess this is not-a-bug? but maybe...

No, I used https://github.com/pyenv/pyenv

Both segfaults, but very different places. This one was at the very start of the process launch, long before being able to attempt image generation.