-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PPDiffusers] add photomaker & InstantID model #401
Merged
JunnYu
merged 17 commits into
PaddlePaddle:upgrade_ppdiffusers0240
from
JiehangXie:upgrade_ppdiffusers0240
Feb 7, 2024
Merged
Changes from 12 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
4dc9fc2
add photomaker model
JiehangXie f51db77
delete extra images
JiehangXie 21d489a
update load_photomaker_adapter()
JiehangXie 1813dcf
delete aistudio_sdk requirement
JiehangXie be3e2fc
delete redundant code
JiehangXie 9509a1e
fix model loading & add `low_gpu_mem_usage `param
JiehangXie bb37631
delete annotation
JiehangXie bf4082b
pre-commit
JunnYu 9f03eb5
Merge remote-tracking branch 'upstream/upgrade_ppdiffusers0240' into …
JunnYu 2a0b454
update
JunnYu ce81b15
noqa
JunnYu 7be8cee
[PPDiffusers] add InstantID model
JiehangXie 85c4cfa
fix bugs and add gradio demo
JiehangXie 8ea80d6
reformat the code
JiehangXie df0f8f3
add README.md
JiehangXie f0b0e63
add Gradio version
JiehangXie 74d1906
update
JunnYu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import paddle | ||
from typing import Optional | ||
from ppdiffusers.models.attention_processor import Attention | ||
from ppdiffusers.utils import USE_PEFT_BACKEND | ||
|
||
class AttnProcessor(paddle.nn.Layer): | ||
r""" | ||
Default processor for performing attention-related computations. | ||
""" | ||
|
||
def __call__( | ||
self, | ||
attn: Attention, | ||
hidden_states: paddle.Tensor, | ||
encoder_hidden_states: Optional[paddle.Tensor] = None, | ||
attention_mask: Optional[paddle.Tensor] = None, | ||
temb: Optional[paddle.Tensor] = None, | ||
scale: float = 1.0, | ||
**kwargs, | ||
) -> paddle.Tensor: | ||
residual = hidden_states | ||
|
||
args = () if USE_PEFT_BACKEND else (scale,) | ||
|
||
if attn.spatial_norm is not None: | ||
hidden_states = attn.spatial_norm(hidden_states, temb) | ||
|
||
input_ndim = hidden_states.ndim | ||
|
||
if input_ndim == 4: | ||
batch_size, channel, height, width = hidden_states.shape | ||
hidden_states = hidden_states.reshape([batch_size, channel, height * width]).transpose([0, 2, 1]) | ||
|
||
batch_size, sequence_length, _ = ( | ||
hidden_states.shape if encoder_hidden_states is None else encoder_hidden_states.shape | ||
) | ||
attention_mask = attn.prepare_attention_mask(attention_mask, sequence_length, batch_size) | ||
|
||
if attn.group_norm is not None: | ||
hidden_states = attn.group_norm(hidden_states.transpose([0, 2, 1])).transpose([0, 2, 1]) | ||
|
||
query = attn.to_q(hidden_states, *args) | ||
|
||
if encoder_hidden_states is None: | ||
encoder_hidden_states = hidden_states | ||
elif attn.norm_cross: | ||
encoder_hidden_states = attn.norm_encoder_hidden_states(encoder_hidden_states) | ||
|
||
key = attn.to_k(encoder_hidden_states, *args) | ||
value = attn.to_v(encoder_hidden_states, *args) | ||
|
||
query = attn.head_to_batch_dim(query) | ||
key = attn.head_to_batch_dim(key) | ||
value = attn.head_to_batch_dim(value) | ||
|
||
attention_probs = attn.get_attention_scores(query, key, attention_mask) | ||
hidden_states = paddle.matmul(attention_probs, value) | ||
hidden_states = attn.batch_to_head_dim(hidden_states) | ||
|
||
# linear proj | ||
hidden_states = attn.to_out[0](hidden_states, *args) | ||
# dropout | ||
hidden_states = attn.to_out[1](hidden_states) | ||
|
||
if input_ndim == 4: | ||
hidden_states = hidden_states.transpose([0, 2, 1]).reshape([batch_size, channel, height, width]) | ||
|
||
if attn.residual_connection: | ||
hidden_states = hidden_states + residual | ||
|
||
hidden_states = hidden_states / attn.rescale_output_factor | ||
|
||
return hidden_states |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这应该没必要重写吧,直接参考ip adapter训练的那个,因为可能未来版本会变,里面的__call__会变化