Instructions to use lichang0928/QA-MDT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lichang0928/QA-MDT with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("lichang0928/QA-MDT", 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
Add model_type
#3
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -6,6 +6,7 @@ datasets:
|
|
| 6 |
- agkphysics/AudioSet
|
| 7 |
language:
|
| 8 |
- en
|
|
|
|
| 9 |
license: mit
|
| 10 |
pipeline_tag: text-to-audio
|
| 11 |
tags:
|
|
@@ -13,7 +14,6 @@ tags:
|
|
| 13 |
- art
|
| 14 |
- text-to-audio
|
| 15 |
model_type: diffusers
|
| 16 |
-
library_name: diffusers
|
| 17 |
---
|
| 18 |
|
| 19 |
## Model Description
|
|
|
|
| 6 |
- agkphysics/AudioSet
|
| 7 |
language:
|
| 8 |
- en
|
| 9 |
+
library_name: diffusers
|
| 10 |
license: mit
|
| 11 |
pipeline_tag: text-to-audio
|
| 12 |
tags:
|
|
|
|
| 14 |
- art
|
| 15 |
- text-to-audio
|
| 16 |
model_type: diffusers
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
## Model Description
|