Conversation
pull the latest code
|
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
|
Hi, @hlky , I ran 'make style' and modified my code, but it seems there are some errors in the other original files that I haven't changed. |
|
@staoxiao This is due to |
stevhliu
left a comment
There was a problem hiding this comment.
Thank you for contributing such a cool pipeline and complete docs!
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
Co-authored-by: Steven Liu <[email protected]>
yiyixuxu
left a comment
There was a problem hiding this comment.
oh thanks for your PR!
super excited to have this in diffusers. My main feedbacks is that we cannot import the Phi3Model from transformers and use it as a block in diffusers. I left some comment on how to rewrite and fit into diffusers code. Let us know if you need any help!
Co-authored-by: hlky <[email protected]>
Co-authored-by: hlky <[email protected]>
Co-authored-by: hlky <[email protected]>
Co-authored-by: hlky <[email protected]>
Co-authored-by: hlky <[email protected]>
update to latest version
a-r-r-o-w
left a comment
There was a problem hiding this comment.
Thanks @staoxiao! Apologies for the delay in reviews
Just some nits and refactors required to follow latest design choices in diffusers. A good reference would be the HunyuanVideo PR: #10136
One other remaining requirement is the minimal transformer modeling test. This would be a good example. Happy to help make any of the changes 🤗
|
Thanks for all suggestions and I have updated the code! |
|
@nitinmukesh, |
|
Thank you @staoxiao . |
|
@staoxiao can you run @a-r-r-o-w, can you take a look again to see if all your comments are addressed? we can merge after that:) |
a-r-r-o-w
left a comment
There was a problem hiding this comment.
Thanks @staoxiao for addressing the reviews! The PR looks good to merge. There are some things that we could refactor further to make consistent with diffusers-style implementation, but it is mostly just nitpicking -- we can do a follow-up to address this.
Really sorry for the long wait!
There seems to be some tests that are failing. Could you look at them? Happy to help fix them if you're busy
failing tests
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_callback_cfg - AttributeError: 'OmniGenPipeline' object has no attribute 'num_timesteps'
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_callback_inputs - assert tensor(18.2633) == 0
+ where tensor(18.2633) = <built-in method sum of Tensor object at 0x7fed4b365490>()
+ where <built-in method sum of Tensor object at 0x7fed4b365490> = tensor([[[[0.2224, 1.5052],\n [1.5705, 0.7162]],\n\n [[0.5437, 0.5603],\n [0.5271, 1.9422]],\n\n [[1.4330, 0.6505],\n [0.3135, 0.6654]],\n\n [[1.2489, 2.0913],\n [3.4383, 0.8350]]]]).sum
+ where tensor([[[[0.2224, 1.5052],\n [1.5705, 0.7162]],\n\n [[0.5437, 0.5603],\n [0.5271, 1.9422]],\n\n [[1.4330, 0.6505],\n [0.3135, 0.6654]],\n\n [[1.2489, 2.0913],\n [3.4383, 0.8350]]]]) = <built-in method abs of Tensor object at 0x7fed4b364540>()
+ where <built-in method abs of Tensor object at 0x7fed4b364540> = tensor([[[[-0.2224, -1.5052],\n [ 1.5705, 0.7162]],\n\n [[ 0.5437, -0.5603],\n [ 0.5271, 1.9422]],\n\n [[-1.4330, 0.6505],\n [ 0.3135, -0.6654]],\n\n [[ 1.2489, 2.0913],\n [-3.4383, -0.8350]]]]).abs
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_inference_batch_single_identical - Failed: Timeout >60.0s
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_loading_with_variants - OSError: Error no file named diffusion_pytorch_model.fp16.bin found in directory /tmp/tmp1u_zu527/transformer.
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_num_images_per_prompt - RuntimeError: Sizes of tensors must match except in dimension 1. Expected size 2 but got size 4 for tensor number 1 in the list.
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_save_load_dduf - Failed: Timeout >60.0s
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_save_load_local - OSError: Error no file named diffusion_pytorch_model.bin found in directory /tmp/tmpwmjdsdca/transformer.
FAILED tests/pipelines/omnigen/test_pipeline_omnigen.py::OmniGenPipelineFastTests::test_save_load_optional_components - OSError: Error no file named diffusion_pytorch_model.bin found in directory /tmp/tmpxrfny9bf/transformer.
|
Hi, @a-r-r-o-w , I have fixed some of the failing tests. However, the remaining failing tests need your assistance to resolve, for example, OmniGen does not have an fp16 version for the function |
|
@staoxiao Seems like that might be a local environment error, as it is passing for my environment and on our CI. Merging since the currently failing tests look unrelated. Thanks Shitao! :) |
|
Thank you @staoxiao and @a-r-r-o-w . |
|
Yes, thank you @staoxiao and @a-r-r-o-w I've quickly added OmniGen to a free Blender add-on, I'm sometimes working on. And posted about it on Reddit. I hope it's okay, and it'll give your hard work some exposure. Here's the video I did in full res: OmniGen.mp4 |
|
Keep doing it @tin2tin! We appreciate the good work. |




What does this PR do?
Add a new pipeline along with corresponding tests and documentation.
Fixes #9873
Before submitting
documentation guidelines, and
here are tips on formatting docstrings.
@sayakpaul