LaiaTarres

Results 4 comments of LaiaTarres

Hi, Fixed this error by reversing [this commit](https://github.com/johannakarras/DreamPose/commit/5bf30b7df70cf6f2e0bb25556c6ff2cbf0f2b1bf). So changing this line: unet.conv_in.weight[:, 4:] = torch.zeros(unet.conv_in.weight[:, 3:].shape) For what was previously there: unet.conv_in.weight[:, 3:] = torch.zeros(unet.conv_in.weight[:, 3:].shape)

The workaround is in [this other issue](https://github.com/johannakarras/DreamPose/issues/49).

I have the same issue... the dress color changes and some of the shape, but the identity is not preserved. Do the authors have any tips on this? Or is...

Same! I have replaced it like this and now it doesn't give me this error anymore: ``` name = name.replace('query.', 'to_q.') name = name.replace('key.', 'to_k.') name = name.replace('value.', 'to_v.') name...