-
-
Notifications
You must be signed in to change notification settings - Fork 500
Added Support for WAN Image Generation #974
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
Open
ParamThakkar123
wants to merge
36
commits into
main
Choose a base branch
from
add/video-gen
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+334
−52
Open
Changes from 11 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
6bd8f24
Added Video Generation support
ParamThakkar123 f33c5a6
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 9020496
Merge branch 'main' into add/video-gen
deep1401 f748884
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 90f77f0
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 c85ed54
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 9dfc70a
Separate plugin for video diffusion
ParamThakkar123 9b73396
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 1f444e8
Separate plugin for video diffusion
ParamThakkar123 2a15194
Separate plugin for video diffusion
ParamThakkar123 d45b7b3
Merge branch 'main' into add/video-gen
deep1401 5988526
Rebase
ParamThakkar123 2859589
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 353878d
Added Support for generating images using Wan
ParamThakkar123 fbba69c
Updates
ParamThakkar123 97e43db
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 e5a8922
Updates
ParamThakkar123 7490496
Rebase
ParamThakkar123 eea03bd
Rebase
ParamThakkar123 18e8d54
Rebase
ParamThakkar123 863987b
Rebase
ParamThakkar123 09a9a83
Merge branch 'main' into add/video-gen
ParamThakkar123 88a374a
Merge branch 'main' into add/video-gen
dadmobile c090505
Merge branch 'main' into add/video-gen
dadmobile 0e88c74
Merge branch 'main' into add/video-gen
deep1401 da4a138
Merge branch 'main' into add/video-gen
deep1401 9de2d06
Merge branch 'main' into add/video-gen
deep1401 b948e58
bug fix -- missed await
deep1401 48ee850
Rebase
ParamThakkar123 67dc383
Rebase
ParamThakkar123 b6f3c9d
Function rename
ParamThakkar123 d776732
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 d1be8d7
Merge branch 'main' into add/video-gen
dadmobile 157f7f9
Updates
ParamThakkar123 6c639dd
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 8198407
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 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 hidden or 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 hidden or 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,3 @@ | ||
| #!/bin/bash | ||
| uv pip install git+https://github.com/huggingface/diffusers transformers accelerate safetensors | ||
ParamThakkar123 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| uv pip install peft | ||
33 changes: 33 additions & 0 deletions
33
api/transformerlab/plugins/video_diffusion_plugin/index.json
This file contains hidden or 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,33 @@ | ||
| { | ||
| "name": "Video Diffusion", | ||
| "uniqueId": "video_diffusion", | ||
| "description": "Generate videos in the Diffusion tab using this plugin", | ||
| "plugin-format": "python", | ||
| "type": "diffusion", | ||
| "version": "0.0.6", | ||
| "git": "", | ||
| "url": "", | ||
| "files": ["main.py", "video_diffusion_worker.py", "setup.sh"], | ||
| "model_architectures": [ | ||
| "DiffusionPipeline", | ||
ParamThakkar123 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "WanPipeline", | ||
| "StableVideoDiffusionPipeline", | ||
| "WanImageToVideoPipeline" | ||
| ], | ||
| "supported_hardware_architectures": ["cuda", "amd"], | ||
| "_dataset": false, | ||
| "setup-script": "setup.sh", | ||
| "parameters": { | ||
| "tflabcustomui_is_text2video": { | ||
| "type": "boolean", | ||
| "title": "Text-to-Video Generation", | ||
| "description": "If checked, generates a video from a text prompt. Otherwise, an input image is required for image-to-video.", | ||
| "default": false | ||
| } | ||
| }, | ||
| "parameters_ui": { | ||
| "tflabcustomui_is_text2video": { | ||
| "ui:widget": "checkbox" | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.