File size: 2,691 Bytes
ea17a8d |
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 |
{
"module": {
"label": "DiffDiffBlocks",
"category": "Modular Diffusers",
"params": {
"prompt": {
"label": "Prompt",
"type": "string",
"default": "a bear sitting in a chair drinking a milkshake",
"display": "textarea"
},
"negative_prompt": {
"label": "Negative Prompt",
"type": "string",
"default": "deformed, ugly, wrong proportion, low res, bad anatomy, worst quality, low quality",
"display": "textarea"
},
"image": {
"label": "Image",
"type": "image",
"display": "input"
},
"height": {
"label": "Height",
"type": "int",
"display": "text",
"default": 1024,
"min": 8,
"max": 8192,
"step": 8,
"group": "dimensions"
},
"width": {
"label": "Width",
"type": "int",
"display": "text",
"default": 1024,
"min": 8,
"max": 8192,
"step": 8,
"group": "dimensions"
},
"num_inference_steps": {
"label": "Steps",
"type": "int",
"default": 25,
"min": 1,
"max": 1000
},
"diffdiff_map": {
"type": "image",
"label": "diffdiff_map",
"display": "input"
},
"ip_adapter_embeds": {
"label": "ip_adapter_embeds",
"type": "ip_adapter_embeds",
"display": "input"
},
"text_encoders": {
"label": "text_encoders",
"type": "text_encoders",
"display": "input"
},
"guider": {
"label": "guider",
"type": "guider",
"display": "input"
},
"image_encoder": {
"label": "image_encoder",
"type": "diffusers_auto_model",
"display": "input"
},
"unet": {
"label": "unet",
"type": "diffusers_auto_model",
"display": "input"
},
"vae": {
"label": "vae",
"type": "diffusers_auto_model",
"display": "input"
},
"scheduler": {
"label": "scheduler",
"type": "scheduler",
"display": "input"
},
"controlnet": {
"label": "controlnet",
"type": "diffusers_auto_model",
"display": "input"
},
"images": {
"label": "Images",
"type": "image",
"display": "output"
}
}
},
"name_mapping": {
"ip_adapter_embeds": "ip_adapter_embeds",
"negative_ip_adapter_embeds": "ip_adapter_embeds",
"text_encoder": "text_encoders",
"text_encoder_2": "text_encoders",
"tokenizer": "text_encoders",
"tokenizer_2": "text_encoders"
}
} |