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
Thank you for this great project guys!
I am trying to use this to create smooth transitions between a sequence of images which I generate by varying prompt weights.
I have a sequence of images being generated live, by using prompts of this general form: (Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.1
Then I vary the weights with each step to get the next image... I need to do it Live, so pre-generating stuff is not an option.
Now, I wanted to use this project to create smooth transitions between each 2 images I have.
To do that, I want to feed two prompts which contain weights, something like this:
Prompt 1: (Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.1
Prompt 2: (Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.3
This still does not work.
The results I see are basically that weights are ignored.
Can you please advice on this?
Is it possible to get weights working with the way you process text embeddings?
If not, could it be possible to feed two pre-generated images and create a set of transition images between them?
Any help would be appreciated.
I would also gladly contribute to the repo here if you guide me towards the right solution!
The text was updated successfully, but these errors were encountered:
Hi,
Thank you for this great project guys!
I am trying to use this to create smooth transitions between a sequence of images which I generate by varying prompt weights.
I have a sequence of images being generated live, by using prompts of this general form:
(Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.1
Then I vary the weights with each step to get the next image... I need to do it Live, so pre-generating stuff is not an option.
Now, I wanted to use this project to create smooth transitions between each 2 images I have.
To do that, I want to feed two prompts which contain weights, something like this:
(Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.1
(Beautiful medieval town on a hilltop, with a river flowing in the valley below)1.0, (winter)0.3
I tried all of the methods listed here: https://huggingface.co/docs/diffusers/en/using-diffusers/weighted_prompts
However, it doesn't seem to react to it.
I tried to introduce
compel
into the mix by overriding theget_text_embedding
function like this:This still does not work.
The results I see are basically that weights are ignored.
Can you please advice on this?
Is it possible to get weights working with the way you process text embeddings?
If not, could it be possible to feed two pre-generated images and create a set of transition images between them?
Any help would be appreciated.
I would also gladly contribute to the repo here if you guide me towards the right solution!
The text was updated successfully, but these errors were encountered: