File size: 4,763 Bytes
66d35e9
 
 
 
 
 
 
 
dd1ec3c
 
 
66d35e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1a46bfc
66d35e9
1a46bfc
66d35e9
 
 
 
 
 
 
36731fe
66d35e9
 
 
 
 
 
 
 
 
 
 
b62695d
66d35e9
 
 
 
 
b62695d
66d35e9
 
 
 
 
 
 
 
 
 
 
 
 
 
5db35d8
66d35e9
40e94ba
d3cbb7e
 
66d35e9
abbed05
 
 
 
40e94ba
abbed05
 
5db35d8
 
23a1ade
abbed05
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3b27a60
9f7564a
61012e9
3b27a60
61012e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
pipeline_tag: text-to-image
widget:
- text: >-
    movie scene screencap, cinematic footage. thanos smelling a little yellow
    rose. extreme wide angle,
  output:
    url: 1man.png
- text: god
  output:
    url: god.png
- text: 'A tiny robot taking a break under a tree in the garden '
  output:
    url: robot.png
- text: mystery
  output:
    url: mystery.png
- text: a cat wearing sunglasses in the summer
  output:
    url: cat.png
- text: 'robot holding a sign that says ’a storm is coming’ '
  output:
    url: storm.png
- text: >-
    The Exegenesis of the soul, captured within a boundless well of starlight,
    pulsating and vibrating wisps, chiaroscuro, humming transformer
  output:
    url: soul.png
- text: >-
    anime boy, protagonist, best quality
  output:
    url: animeboy.png
- text: natural photography of a man, glasses, cinematic,
  output:
    url: glasses.png
- text: if I could turn back time
  output:
    url: time.png
- text: >-
    ("Mobius" text logo) powerful aura, swirling power, cinematic 
  output:
    url: mobius.png
- text: the backrooms
  output:
    url: backrooms.png
license: apache-2.0
---
<Gallery />

# Mobius: Redefining State-of-the-Art in Debiased Diffusion Models

Mobius, a diffusion model that pushes the boundaries of domain-agnostic debiasing and representation realignment. By employing a brand new constructive deconstruction framework, Mobius achieves unrivaled generalization across a vast array of styles and domains, eliminating the need for expensive pretraining from scratch.

# Domain-Agnostic Debiasing: A Groundbreaking Approach

Domain-agnostic debiasing is a novel technique pioneered Corcel. This innovative approach aims to remove biases inherent in diffusion models without limiting their ability to generalize across diverse domains. Traditional debiasing methods often focus on specific domains or styles, resulting in models that struggle to adapt to new or unseen contexts. In contrast, domain-agnostic debiasing ensures that the model remains unbiased while maintaining its versatility and adaptability.

The key to domain-agnostic debiasing lies in the constructive deconstruction framework. This framework allows for fine-grained reworking of biases and representations without the need for pretraining from scratch. The technical details of this groundbreaking approach will be discussed in an upcoming research paper, "Constructive Deconstruction: Domain-Agnostic Debiasing of Diffusion Models," which will be made available on the Corcel.io website and through scientific publications.

By applying domain-agnostic debiasing, Mobius sets a new standard for fairness and impartiality in image generation while maintaining its exceptional ability to adapt to a wide range of styles and domains.

# Surpassing the State-of-the-Art

Mobius outperforms existing state-of-the-art diffusion models in several key areas:

Unbiased generation: Mobius generates images that are virtually free from the inherent biases commonly found in other diffusion models, setting a new benchmark for fairness and impartiality across all domains.

Exceptional generalization: With its unparalleled ability to adapt to an extensive range of styles and domains, Mobius consistently delivers top-quality results, surpassing the limitations of previous models.

Efficient fine-tuning: The Mobius base model serves as a superior foundation for creating specialized models tailored to specific tasks or domains, requiring significantly less fine-tuning and computational resources compared to other state-of-the-art models.


# Recommendations

- CFG between 3.5 and 7
  - 3.5 for extreme realism and skin detailing
  - 7 for artstic, anime, surrealism, and so on.
- Requires a CLIP skip of -3
- Sampler: DPM++ 3M SDE
- Scheduler: Karras
- Resolution: 1024x1024

Please also consider using these keep words to improve your prompts: best quality, HD, '~*~aesthetic~*~'.


# Use it with 🧨 diffusers

```python
import torch
from diffusers import (
    StableDiffusionXLPipeline, 
    KDPM2AncestralDiscreteScheduler,
    AutoencoderKL
)

# Load VAE component
vae = AutoencoderKL.from_pretrained(
    "madebyollin/sdxl-vae-fp16-fix", 
    torch_dtype=torch.float16
)

# Configure the pipeline
pipe = StableDiffusionXLPipeline.from_pretrained(
    "Corcelio/mobius", 
    vae=vae,
    torch_dtype=torch.float16
)
pipe.scheduler = KDPM2AncestralDiscreteScheduler.from_config(pipe.scheduler.config)
pipe.to('cuda')

# Define prompts and generate image
prompt = "mystery"
negative_prompt = ""

image = pipe(
    prompt, 
    negative_prompt=negative_prompt, 
    width=1024,
    height=1024,
    guidance_scale=7,
    num_inference_steps=50
).images[0]
```

# Credits

Made by Corcel [ https://corcel.io/ ]