psychedelicious
psychedelicious
Thanks @joulev We want the hooks to return typesafe `active` & `over`, so I've modified your example to accommodate: ```typescript // useDroppable() type UseDroppableTypesafeReturnValue = Omit< ReturnType, 'active' | 'over'...
`torchvision` 0.17 was just released: https://github.com/pytorch/vision/releases/tag/v0.17.0
Over at [Invoke](https://github.com/invoke-ai/InvokeAI), we only use the RealESRGAN functionality provided by `basicsr`. I extracted the relevant classes and cleaned them up a bit: - [basicsr](https://github.com/invoke-ai/InvokeAI/tree/main/invokeai/backend/image_util/basicsr) - [RealESRGAN](https://github.com/invoke-ai/InvokeAI/tree/main/invokeai/backend/image_util/realesrgan) - [implementation](https://github.com/invoke-ai/InvokeAI/blob/main/invokeai/app/invocations/upscale.py#L55-L121) Maybe...
Thanks for the link @akx ! This looks like a very ergonomic API, great work. Much nicer than what the basicsr repo provides (and my extracted version of it).
Sounds good. I'll give this a go sometime this week.
I haven't had time for this but hope to in the future, if it isn't picked up by anybody else.
Revisiting upgrading to v7 today, still seems to be an issue.
TODO - [ ] Add an option to installer to ignore the pip cache. Should mitigate issues with troublesome packages like `controlnet_aux` where sometimes a broken version is cached. See...
By "I'm not sure the extra complexity is worth it", I meant having a migration system at all for the config file. A couple simple functions serve the need just...
The problem with interactions with the live filesystem aren't caused by tests calling get_config directly. It's that when the app's modules are loaded and classes instantiated in tests, get_config gets...