Chanchana Sornsoontorn
Chanchana Sornsoontorn
@whydna it means that there is a 50% chance for the text prompt input to be dropped (set to empty string) when training the model and only the control image...
> @off99555 thanks for the explanation - makes sense. > > Is this achieved by just omitting prompts for 50% of the data set in prompts.json? Or is there some...
This model is the closest from what I've seen on the internet: https://www.reddit.com/r/StableDiffusion/comments/1281iva/new_controlnet_face_model/   It's used to mostly control facial expression though. If you want EXACT face copy then...
@yenfryherrerafeliz Yes, I can confirm that the warning still exists even if the command fails (e.g. access denied or wrong access key specified in environment variables) FYI, I use Windows...
@jpassaro I do this a lot! For example, when in markdown, you want to surround things with ` ``` ` to make it into a code block. In Python, you...
Currently, I map it like this: https://github.com/off99555/vimrc/commit/ed9b0428d898a20587629652d35e7e9f61d0761f So `S3"` would surround things with 3 double quotes. It's not using vim-surround plugin's engine at all. I think it might be possible...
And a lot of times, I want to surround things with arbitrary text like `HEY my text HEY`. It should be obvious for the vim-surround maintainer to implement this because...
> try passing it as an argument directly > > ```shell > --gpus 0, \ > ``` Why does this work? Is there an intuitive explanation? How can we make...
I'm not sure why the above hack somewhat works. But I now know the true culprit. It's the typo made by pokemon finetune code. `$NUM_GPUS` in the 2nd cell should...
> RGB in all of our models. Does it mean that we have to convert image from BGR to RGB and feed to `FaceAnalysis.get` function? https://github.com/deepinsight/insightface/blob/30295de48907e04077d6d22a9a8f580b525822ce/python-package/insightface/app/face_analysis.py#L58-L77 I want to know...