Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
'update'
Browse files Browse the repository at this point in the history
  • Loading branch information
wailovet committed May 9, 2024
1 parent 8711658 commit cce7f44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ def INPUT_TYPES(s):
"required":{
"xl_ckpt_name": (["none"] + folder_paths.get_filename_list("checkpoints"),),
"image": ("IMAGE",),
"resolution": ("INT", {"default": -1, "min": -1, "max": MAX_RESOLUTION}),
"resolution": ("INT", {"default": 1280, "min": -1, "max": MAX_RESOLUTION}),
"style_type": (STYLE_TYPE,),
"seed": ("INT", {"default": 0, "min": 0, "max": 0xffffffffffffffff}),
"steps": ("INT", {"default": 25, "min": 1, "max": 10000}),
"steps": ("INT", {"default": 35, "min": 1, "max": 10000}),
"cfg": ("FLOAT", {"default": 5.5, "min": 0.0, "max": 100.0, "step":0.1, "round": 0.01}),
"denoise": ("FLOAT", {"default": 0.75, "min": 0.0, "max": 1.0, "step": 0.01}),
"denoise": ("FLOAT", {"default": 0.65, "min": 0.0, "max": 1.0, "step": 0.01}),
"positive_prompt": ("STRING", {"default": ""}),
"negative_prompt": ("STRING", {"default": ""}),
},
Expand Down
2 changes: 1 addition & 1 deletion mz_stylize_photo_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
STYLE_PROMPTS = {
"clay.v1": {
# "positive": "clay_world,clay_style,plasticine_style,photography,macro,tilt shift,cute,by Adult Swim,",
"positive": "clay,clay_model,photography,macro,cute,by Makoto Shinkai,",
"positive": "clay,clay_model,photography,macro,cute,by Makoto Shinkai,clear_pupils,",
"negative": "blurry,noisy,text,watermark"
}
}
Expand Down

0 comments on commit cce7f44

Please sign in to comment.