Instructions to use aidealab/AIdeaLab-VideoJP with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use aidealab/AIdeaLab-VideoJP with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("aidealab/AIdeaLab-VideoJP", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ This is a text-to-video model learning from CC-BY, CC-0 like images.
|
|
| 24 |
|
| 25 |
At AIdeaLab, we develop AI technology through active dialogue with creators, aiming for mutual understanding and cooperation.
|
| 26 |
We strive to solve challenges faced by creators and grow together.
|
| 27 |
-
One of these challenges is that some creators and fans want to use
|
| 28 |
To address this issue, we have developed CommonVideo.
|
| 29 |
|
| 30 |
#### Features of CommonVideo
|
|
|
|
| 24 |
|
| 25 |
At AIdeaLab, we develop AI technology through active dialogue with creators, aiming for mutual understanding and cooperation.
|
| 26 |
We strive to solve challenges faced by creators and grow together.
|
| 27 |
+
One of these challenges is that some creators and fans want to use video generation but can't, likely due to the lack of permission to use certain videos for training.
|
| 28 |
To address this issue, we have developed CommonVideo.
|
| 29 |
|
| 30 |
#### Features of CommonVideo
|