-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.example.yaml
147 lines (128 loc) · 4.85 KB
/
config.example.yaml
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# This configuration file provides global settings for the gen-server.
# Do not include sensitive information (tokens, keys) in a config.yaml file; place them
# inside of the .env file and access them via os.environ.get(), or use k8s secrets.
# port: 9997
# db:
# dsn: "postgres://user:password@localhost:5432/cozy"
pipeline_defs:
playground2.5:
source: hf:playgroundai/playground-v2.5-1024px-aesthetic
flux.1-schnell-fp8:
source: hf:black-forest-labs/FLUX.1-schnell
components:
transformer:
source: hf:cozy-creator/Flux.1-schnell-8bit/transformer
text_encoder_2:
source: hf:cozy-creator/Flux.1-schnell-8bit/text_encoder_2
default_args:
max_sequence_length: 256
flux.1-dev:
source: hf:black-forest-labs/FLUX.1-dev
default_args:
max_sequence_length: 512
flux.1-dev-fp8:
source: hf:black-forest-labs/FLUX.1-dev
components:
text_encoder_2:
source: hf:cozy-creator/FLUX.1-dev-8bit/text_encoder_2
transformer:
source: hf:cozy-creator/FLUX.1-dev-8bit/transformer
default_args:
max_sequence_length: 512
flux.1-dev-nf4:
source: hf:black-forest-labs/FLUX.1-dev
components:
text_encoder_2:
source: hf:hf-internal-testing/flux.1-dev-nf4-pkg/text_encoder_2
transformer:
source: hf:hf-internal-testing/flux.1-dev-nf4-pkg/trasformer
default_args:
max_sequence_length: 512
openflux.1:
# community-provided diffusers pipeline; overwrites the FluxPipeline class_name from model_index.json
# Note that if a community_pipeline is used, the class_name from model_index.json, or specified here,
# will be ignored and replaced with the generic DiffusionPipeline class.
custom_pipeline: pipeline_flux_with_cfg
source: hf:ostris/OpenFLUX.1
default_args:
max_sequence_length: 512
sd3.5-large-int8:
source: hf:stabilityai/stable-diffusion-3.5-large
components:
transformer:
source: hf:cozy-creator/stable-diffusion-3.5-large-8bit/transformer
text_encoder_3:
source: hf:cozy-creator/stable-diffusion-3.5-large-8bit/text_encoder_3
sdxl.base:
source: hf:stabilityai/stable-diffusion-xl-base-1.0
illustrious.xl:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/889818?type=Model&format=SafeTensor&size=pruned&fp=fp16
metadata:
display_name: Illustrious XL
lineage: sdxl.base
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
pony.v6:
# civiitai does not provide model_index.json files, hence class_name must be specified manually
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/290640?type=Model&format=SafeTensor&size=pruned&fp=fp16
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
cyberrealistic.pony:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/953264?type=Model&format=SafeTensor&size=pruned&fp=fp16
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
wai.ani.ponyxl:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/1065370?type=Model&format=SafeTensor&size=pruned&fp=fp16
real.dream.pony:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/832353?type=Model&format=SafeTensor&size=pruned&fp=fp16
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
pony.realism:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/914390?type=Model&format=SafeTensor&size=full&fp=fp16
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
babes_by_stable_yogi.v4.xl.fp16:
class_name: StableDiffusionXLPipeline
source: https://civitai.com/api/download/models/984905?type=Model&format=SafeTensor&size=full&fp=fp16
metadata:
display_name: Babes by Stable Yogi V4 XL
lineage: pony.v6
components:
scheduler:
class_name: EulerAncestralDiscreteScheduler
# example of all parameters:
# playground2.5:
# source: hf:playgroundai/playground-v2.5-1024px-aesthetic
# metadata:
# display_name: Playground 2.5
# lineage: playground2.5
# description: whatever
# tags:
# - whatever
# - aesthetic
# class_name: null
# custom_pipeline:
# default_args:
# guidance_scale: 3.5
# num_inference_steps: 25
# components:
# scheduler:
# class_name: EDMDPMSolverMultistepScheduler
# kwargs:
# use_kwargs_sigmas: true
# text_encoder_2:
# class_name: transformers.CLIPTextModelWithProjection
# source: hf:playgroundai/playground-v2.5-1024px-aesthetic/text_encoder_2
# unet:
# lineage: playground2.5