Spaces:
Running
on
Zero
Running
on
Zero
Update flux/sampling.py
Browse files- flux/sampling.py +0 -4
flux/sampling.py
CHANGED
|
@@ -30,10 +30,6 @@ def prepare(t5: HFEmbedder, clip: HFEmbedder, img: Tensor, prompt: str | list[st
|
|
| 30 |
txt = repeat(txt, "1 ... -> bs ...", bs=bs)
|
| 31 |
txt_ids = torch.zeros(bs, txt.shape[1], 3)
|
| 32 |
|
| 33 |
-
print("!!!!!!!!!!!!opts.source_prompt!!!!!!!!!!!!",len(prompt))
|
| 34 |
-
print("!!!!!!!!!!!!opts.source_prompt!!!!!!!!!!!!",prompt)
|
| 35 |
-
print("!!!!!!!!!!clip!!!!!!!!!",next(clip.parameters()).device)
|
| 36 |
-
print("!!!!!!!!!!!!clip model",clip)
|
| 37 |
vec = clip(prompt)
|
| 38 |
if vec.shape[0] == 1 and bs > 1:
|
| 39 |
vec = repeat(vec, "1 ... -> bs ...", bs=bs)
|
|
|
|
| 30 |
txt = repeat(txt, "1 ... -> bs ...", bs=bs)
|
| 31 |
txt_ids = torch.zeros(bs, txt.shape[1], 3)
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
vec = clip(prompt)
|
| 34 |
if vec.shape[0] == 1 and bs > 1:
|
| 35 |
vec = repeat(vec, "1 ... -> bs ...", bs=bs)
|