Instructions to use Anonymous-12/DeCorruptor-CM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Anonymous-12/DeCorruptor-CM with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Anonymous-12/DeCorruptor-CM", torch_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
|
@@ -1,5 +1,5 @@
|
|
| 1 |
-
Efficient Diffusion-Driven Corruption Editor for Test-Time Adaptation
|
|
|
|
| 2 |
GitHub: https://github.com/oyt9306/Decorruptor
|
| 3 |
-
<img src='https://github.com/oyt9306/Decorruptor/blob/main/__assets__/decorruptor.jpg'/>
|
| 4 |
|
| 5 |
Please refer to our GitHub page for the implementation code and detailed information!
|
|
|
|
| 1 |
+
# Efficient Diffusion-Driven Corruption Editor for Test-Time Adaptation
|
| 2 |
+
|
| 3 |
GitHub: https://github.com/oyt9306/Decorruptor
|
|
|
|
| 4 |
|
| 5 |
Please refer to our GitHub page for the implementation code and detailed information!
|