Instructions to use Revanthraja/Text_to_Vision with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Revanthraja/Text_to_Vision with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Revanthraja/Text_to_Vision", 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
Commit ·
7a90688
1
Parent(s): 4d525a1
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- Text-to-Video
|
| 4 |
-
license:
|
| 5 |
pipeline_tag: text-to-video
|
| 6 |
---
|
| 7 |
# Text-to-Video Model with Hugging Face Transformers
|
|
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- Text-to-Video
|
| 4 |
+
license: mit
|
| 5 |
pipeline_tag: text-to-video
|
| 6 |
---
|
| 7 |
# Text-to-Video Model with Hugging Face Transformers
|