From 3ec1f604d2016298638d2ae574af0e3e93e982e6 Mon Sep 17 00:00:00 2001 From: vladmandic Date: Tue, 6 Jan 2026 10:57:45 +0100 Subject: [PATCH] cleanup label Signed-off-by: vladmandic --- html/locale_en.json | 2 +- modules/postprocess/yolo.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/locale_en.json b/html/locale_en.json index 57b5a7c80..7e551d455 100644 --- a/html/locale_en.json +++ b/html/locale_en.json @@ -156,7 +156,7 @@ {"id":"","label":"HDR Maximize","localized":"","reload":"","hint":"Calculates a 'normalization factor' by dividing the maximum tensor value by the specified range multiplied by 4. This factor is then used to shift the channels within the given boundary, ensuring maximum dynamic range for subsequent processing. The objective is to optimize dynamic range for external applications like Photoshop, particularly for adjusting levels, contrast, and brightness"}, {"id":"","label":"Enable refine pass","localized":"","reload":"","hint":"Use a similar process as image to image to upscale and/or add detail to the final image. Optionally uses refiner model to enhance image details."}, {"id":"","label":"Enable detailer pass","localized":"","reload":"","hint":"Detect target objects such as face and reprocess it at higher resolution"}, - {"id":"","label":"Include detection results","localized":"","reload":"","hint":"Include original image with detected areas marked"}, + {"id":"","label":"Include detections","localized":"","reload":"","hint":"Include original image with detected areas marked"}, {"id":"","label":"Sort detections","localized":"","reload":"","hint":"Sort detected areas by from left to right instead of detection score"}, {"id":"","label":"Denoising strength","localized":"","reload":"","hint":"Determines how little respect the algorithm should have for image's content. At 0, nothing will change, and at 1 you'll get an unrelated image. With values below 1.0, processing will take less steps than the Sampling Steps slider specifies"}, {"id":"","label":"Denoise start","localized":"","reload":"","hint":"Override denoise strength by stating how early base model should finish and when refiner should start. Only applicable to refiner usage. If set to 0 or 1, denoising strength will be used"}, diff --git a/modules/postprocess/yolo.py b/modules/postprocess/yolo.py index 9f171b19f..5ff8b1441 100644 --- a/modules/postprocess/yolo.py +++ b/modules/postprocess/yolo.py @@ -500,7 +500,7 @@ class YoloRestorer(Detailer): enabled = gr.Checkbox(label="Enable detailer pass", elem_id=f"{tab}_detailer_enabled", value=False) with gr.Row(): seg = gr.Checkbox(label="Use segmentation", elem_id=f"{tab}_detailer_seg", value=shared.opts.detailer_seg, visible=True) - save = gr.Checkbox(label="Include detection results", elem_id=f"{tab}_detailer_save", value=shared.opts.detailer_save, visible=True) + save = gr.Checkbox(label="Include detections", elem_id=f"{tab}_detailer_save", value=shared.opts.detailer_save, visible=True) with gr.Row(): merge = gr.Checkbox(label="Merge detailers", elem_id=f"{tab}_detailer_merge", value=shared.opts.detailer_merge, visible=True) sort = gr.Checkbox(label="Sort detections", elem_id=f"{tab}_detailer_sort", value=shared.opts.detailer_sort, visible=True)