You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A friend of mine had trouble loading a model called "Flux Unchained".
When loading the tensors for the Unet, the logs were filled with: [INFO ] model.cpp:1685 - unknown tensor 'model.diffusion_model.model.diffusion_model.[**tensor name here**]' in model file
for every single tensor in the model. Then when calling new_sd_ctx(), the logs are: [ERROR] model.cpp:1729 - tensor 'model.diffusion_model.[**tensor name here**]' not in model file
So it looks like the model.diffusion_model. part of the tensor names got duplicated, but the model still somehow work in other inference backends (at least it works in comfyui).
The text was updated successfully, but these errors were encountered:
A friend of mine had trouble loading a model called "Flux Unchained".
When loading the tensors for the Unet, the logs were filled with:
[INFO ] model.cpp:1685 - unknown tensor 'model.diffusion_model.model.diffusion_model.[**tensor name here**]' in model file
for every single tensor in the model. Then when calling
new_sd_ctx()
, the logs are:[ERROR] model.cpp:1729 - tensor 'model.diffusion_model.[**tensor name here**]' not in model file
So it looks like the
model.diffusion_model.
part of the tensor names got duplicated, but the model still somehow work in other inference backends (at least it works in comfyui).The text was updated successfully, but these errors were encountered: