Ephemeral182 / ECCV24_T3-DiffWeather

[ECCV‘24] Teaching Tailored to Talent: Adverse Weather Restoration via Prompt Pool and Depth-Anything Constraint
https://ephemeral182.github.io/T3-DiffWeather
24 stars 0 forks source link

About general prompts #3

Open Lincoln20030413 opened 3 weeks ago

Lincoln20030413 commented 3 weeks ago

Thanks for your fromer replies! I'm sorry but I'm a little confused about this part in your paper:

7c460d7fc1cd9e043c47f61f9f2b3be What's the query in the cross-attention when generating general prompts. The words "the general prompts form the queries" really confuse me a lot. Aren't we going to generate prompt?

Ephemeral182 commented 3 weeks ago

I apologize for the confusion. But what I mean here is that for the normal prompt, there is no way to constrain it to control the background. So we use the normal prompt as the query of the cross attention to constrain it in combination with the features of depth anything. The normal prompt here is first generated by learnable parameters.

Lincoln20030413 commented 3 weeks ago

Thanks. Does it means that you initialize the general prompts and generate the updated general prompts using the initialized general prompts as query? I first think that this part needn't being trained and now maybe it also need being trained.

Ephemeral182 commented 3 weeks ago

Yes, your understanding is correct, this part requires training cross attention.

Lincoln20030413 commented 3 weeks ago

Thanks for your patient replies!