Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7.3k
Latte: Latent Diffusion Transformer for Video Generation#8404
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
73f42b7d19cb1dcab96fd7051b29a9f4158cda00ac4131d80e1800ca4c69b5d5d470ea241f1c1464f36daa8395978dc60eda5767ff05b329443a1dab11424e5c344468535e555c622558afed270eed6dfe25a8ad26faa51dc27f80014d848c07ae150a76232e3fff64278a9931583b5df69064c5508be12c58134de3fa7138191c8ba031e60e0ab5661ecb4ecd23ece82fde6a413b2bd001b8d081a33887c44a73870c04f6c788ae8457e8b79b4b754703233aebb542cf0ce36a131b83ab050a1a0b17780dd25f385fadf4180b9d0250c6c678e1d570acce554f12b4b83ed40bd504add3eb11f19790fcd3477028d8e87506028ca976e4f1dc85deeafcb8f2153d721f29968ff2ea37c9260bb5c6ffc9681f09a16034bcdc521ed5c798811912c71bd5455ea9e54faa4e76f5ab95dc0d1File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -175,4 +175,4 @@ tags | ||
| .ruff_cache | ||
| # wandb | ||
| wandb | ||
| wandb | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| <!--Copyright 2024 The HuggingFace Team. All rights reserved. | ||
| 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. | ||
| --> | ||
| ## LatteTransformer3DModel | ||
| A Diffusion Transformer model for 3D data from [Latte](https://github.com/Vchitect/Latte). | ||
| ## LatteTransformer3DModel | ||
| [[autodoc]] LatteTransformer3DModel |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -41,6 +41,7 @@ | ||
| _import_structure["transformers.dit_transformer_2d"] = ["DiTTransformer2DModel"] | ||
| _import_structure["transformers.dual_transformer_2d"] = ["DualTransformer2DModel"] | ||
| _import_structure["transformers.hunyuan_transformer_2d"] = ["HunyuanDiT2DModel"] | ||
| _import_structure["transformers.latte_transformer_3d"] = ["LatteTransformer3DModel"] | ||
| _import_structure["transformers.lumina_nextdit2d"] = ["LuminaNextDiT2DModel"] | ||
| _import_structure["transformers.pixart_transformer_2d"] = ["PixArtTransformer2DModel"] | ||
| _import_structure["transformers.prior_transformer"] = ["PriorTransformer"] | ||
| @@ -86,6 +87,7 @@ | ||
| DiTTransformer2DModel, | ||
| DualTransformer2DModel, | ||
| HunyuanDiT2DModel, | ||
a-r-r-o-w marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| LatteTransformer3DModel, | ||
| LuminaNextDiT2DModel, | ||
| PixArtTransformer2DModel, | ||
| PriorTransformer, | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -5,6 +5,7 @@ | ||
| from .dit_transformer_2d import DiTTransformer2DModel | ||
| from .dual_transformer_2d import DualTransformer2DModel | ||
| from .hunyuan_transformer_2d import HunyuanDiT2DModel | ||
| from .latte_transformer_3d import LatteTransformer3DModel | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feel free to add a little doc page for it. Example: https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/models/hunyuan_transformer2d.md.
| ||
| from .lumina_nextdit2d import LuminaNextDiT2DModel | ||
| from .pixart_transformer_2d import PixArtTransformer2DModel | ||
| from .prior_transformer import PriorTransformer | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.