Brian Jemilo II
Brian Jemilo II
The problem with doing this at a higher flow is having multiple models loaded into memory. I don't wish to have multiple models loaded into memory when I could just...
You'll need to pass the hand detector as far as I know to detect the hands, by default it uses the face detector.
The asdff pipeline inherits everything from the stable diffusion Pipeline. The only difference is that you use the callback pipe(), pass the usual settings to a dict called custom. No...
Well yes, but it would have been nice to use the MutlerError for processing the filleFilter or have the cb error param pass the message to the MulterError
So in the multer config We can do this: ```js const upload = Multer({ dest: '...' limits: { ... }. fileFilter(req, file, callback) { ... } }) ``` For limits,...
I'm just curious, why would someone want to call super twice, or more? What benefit does it bring?
Any VAE that's saved in a pt format Link To VAE I'm Using https://huggingface.co/WarriorMama777/OrangeMixs/blob/main/VAEs/orangemix.vae.pt I know there is a diffuser version of this, however that doesn't work. It was broken...
That doesn't work. ```log Traceback (most recent call last): File "C:\Users\Shibiko AI\AppData\Roaming\JetBrains\IntelliJIdea2024.2\plugins\python\helpers-pro\pydevd_asyncio\pydevd_nest_asyncio.py", line 138, in run return loop.run_until_complete(task) File "C:\Users\Shibiko AI\AppData\Roaming\JetBrains\IntelliJIdea2024.2\plugins\python\helpers-pro\pydevd_asyncio\pydevd_nest_asyncio.py", line 243, in run_until_complete return f.result() File "C:\Program Files\Python310\lib\asyncio\futures.py",...
Not sure if this is helpful, but the state_dict has these keys. [state_dict_keys.txt](https://github.com/user-attachments/files/16737986/state_dict_keys.txt) ```txt encoder.conv_in.weight encoder.conv_in.bias encoder.down.0.block.0.norm1.weight encoder.down.0.block.0.norm1.bias encoder.down.0.block.0.conv1.weight encoder.down.0.block.0.conv1.bias encoder.down.0.block.0.norm2.weight encoder.down.0.block.0.norm2.bias encoder.down.0.block.0.conv2.weight encoder.down.0.block.0.conv2.bias encoder.down.0.block.1.norm1.weight encoder.down.0.block.1.norm1.bias encoder.down.0.block.1.conv1.weight encoder.down.0.block.1.conv1.bias encoder.down.0.block.1.norm2.weight encoder.down.0.block.1.norm2.bias...
I tried with 0.27.2 and the latest release. The goal is to update to the latest, but the diffusers keeps making breaking changes. This PT one is crazy as many...