Replies: 4 comments
-
I don't know about the first four but -o gives an output a specified name. IE; -o test.jpg would create a jpg named test where ever you have your output being sent to. |
Beta Was this translation helpful? Give feedback.
-
INIT_NOISE sets the type of noise used when no initial_image is provided. It can be gradient or pixels by default it's on gradient. CUTM can be "original", "updated", "nrupdated", "updatedpooling", "latest". none of which I can explain. By default it's "latest". CUTN I'm not totally sure of yet though reducing it allows for larger images without memory issues. I don't see any impact on quality from the low cut number. as far as I can tell. By default it's 32. CUT_POW should be the amount of influence cuts have on the picture; whatever cuts are. By default its 1. Somebody elaborate I'd love to more about these cuts. |
Beta Was this translation helpful? Give feedback.
-
in Generate.py you'll find perceptor = clip.load(args.clip_model, jit=jit)[0].eval().requires_grad_(False).to(device) which I like means; cuts are cutouts of the image the size of the image. later you find. class MakeCutoutsUpdate(nn.Module): which make me think Cuts are copys of the image with random transforms applied and then blended back on. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Hi! There are some advanced parameters that have no explanation, is there some more in-depth guide to these parameters, or can anyone give a short explanation on use and parameter input?
-in INIT_NOISE, --init_noise INIT_NOISE
-iw INIT_WEIGHT, --init_weight INIT_WEIGHT
-cuts CUTN, --num_cuts CUTN
-cutp CUT_POW, --cut_power CUT_POW
-o OUTPUT, --output OUTPUT
Can anyone give an explanation to these, and/or examples on how to use them?
Thanks in advanced!
Beta Was this translation helpful? Give feedback.
All reactions