forked from huggingface/diffusers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Flux] allow tests to run (huggingface#9050)
* fix tests * fix * float64 skip * remove sample_size. * remove * remove more * default_sample_size. * credit black forest for flux model. * skip * fix: tests * remove OriginalModelMixin * add transformer model test * add: transformer model tests
- Loading branch information
Showing
4 changed files
with
111 additions
and
100 deletions.
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
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
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,80 @@ | ||
# coding=utf-8 | ||
# Copyright 2024 HuggingFace Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import unittest | ||
|
||
import torch | ||
|
||
from diffusers import FluxTransformer2DModel | ||
from diffusers.utils.testing_utils import enable_full_determinism, torch_device | ||
|
||
from ..test_modeling_common import ModelTesterMixin | ||
|
||
|
||
enable_full_determinism() | ||
|
||
|
||
class FluxTransformerTests(ModelTesterMixin, unittest.TestCase): | ||
model_class = FluxTransformer2DModel | ||
main_input_name = "hidden_states" | ||
|
||
@property | ||
def dummy_input(self): | ||
batch_size = 1 | ||
num_latent_channels = 4 | ||
num_image_channels = 3 | ||
height = width = 4 | ||
sequence_length = 48 | ||
embedding_dim = 32 | ||
|
||
hidden_states = torch.randn((batch_size, height * width, num_latent_channels)).to(torch_device) | ||
encoder_hidden_states = torch.randn((batch_size, sequence_length, embedding_dim)).to(torch_device) | ||
pooled_prompt_embeds = torch.randn((batch_size, embedding_dim)).to(torch_device) | ||
text_ids = torch.randn((batch_size, sequence_length, num_image_channels)).to(torch_device) | ||
image_ids = torch.randn((batch_size, height * width, num_image_channels)).to(torch_device) | ||
timestep = torch.tensor([1.0]).to(torch_device).expand(batch_size) | ||
|
||
return { | ||
"hidden_states": hidden_states, | ||
"encoder_hidden_states": encoder_hidden_states, | ||
"img_ids": image_ids, | ||
"txt_ids": text_ids, | ||
"pooled_projections": pooled_prompt_embeds, | ||
"timestep": timestep, | ||
} | ||
|
||
@property | ||
def input_shape(self): | ||
return (16, 4) | ||
|
||
@property | ||
def output_shape(self): | ||
return (16, 4) | ||
|
||
def prepare_init_args_and_inputs_for_common(self): | ||
init_dict = { | ||
"patch_size": 1, | ||
"in_channels": 4, | ||
"num_layers": 1, | ||
"num_single_layers": 1, | ||
"attention_head_dim": 16, | ||
"num_attention_heads": 2, | ||
"joint_attention_dim": 32, | ||
"pooled_projection_dim": 32, | ||
"axes_dims_rope": [4, 4, 8], | ||
} | ||
|
||
inputs_dict = self.dummy_input | ||
return init_dict, inputs_dict |
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