diff options
author | Fampai <> | 2022-10-31 13:54:51 +0000 |
---|---|---|
committer | Fampai <> | 2022-10-31 13:54:51 +0000 |
commit | 3b0127e698a2eeb913437bce0b25b478fb06ff11 (patch) | |
tree | e0894e49eb0d7609b12d4e4f3a71fd979830b29c | |
parent | 006756f9cd6258eae418e9209cfc13f940ec53e1 (diff) | |
parent | 9b384dfb5c05129f50cc3f0262f89e8b788e5cf3 (diff) | |
download | stable-diffusion-webui-gfx803-3b0127e698a2eeb913437bce0b25b478fb06ff11.tar.gz stable-diffusion-webui-gfx803-3b0127e698a2eeb913437bce0b25b478fb06ff11.tar.bz2 stable-diffusion-webui-gfx803-3b0127e698a2eeb913437bce0b25b478fb06ff11.zip |
Merge branch 'master' of https://github.com/AUTOMATIC1111/stable-diffusion-webui into TI_optimizations
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | launch.py | 22 | ||||
-rw-r--r-- | localizations/ar_AR.json | 102 | ||||
-rw-r--r-- | localizations/it_IT.json | 1560 | ||||
-rw-r--r-- | localizations/ko_KR.json | 32 | ||||
-rw-r--r-- | modules/api/api.py | 76 | ||||
-rw-r--r-- | modules/api/models.py | 31 | ||||
-rw-r--r-- | modules/generation_parameters_copypaste.py | 1 | ||||
-rw-r--r-- | modules/hypernetworks/hypernetwork.py | 76 | ||||
-rw-r--r-- | modules/processing.py | 8 | ||||
-rw-r--r-- | modules/shared.py | 33 | ||||
-rw-r--r-- | modules/textual_inversion/dataset.py | 2 | ||||
-rw-r--r-- | modules/textual_inversion/learn_schedule.py | 35 | ||||
-rw-r--r-- | modules/textual_inversion/textual_inversion.py | 87 | ||||
-rw-r--r-- | test/__init__.py | 0 | ||||
-rw-r--r-- | test/extras_test.py | 29 | ||||
-rw-r--r-- | test/img2img_test.py | 59 | ||||
-rw-r--r-- | test/server_poll.py | 19 | ||||
-rw-r--r-- | test/test_files/img2img_basic.png | bin | 0 -> 9932 bytes | |||
-rw-r--r-- | test/test_files/mask_basic.png | bin | 0 -> 362 bytes | |||
-rw-r--r-- | test/txt2img_test.py | 74 | ||||
-rw-r--r-- | webui.py | 19 |
22 files changed, 1651 insertions, 616 deletions
@@ -29,3 +29,5 @@ notification.mp3 /textual_inversion .vscode /extensions +/test/stdout.txt +/test/stderr.txt @@ -128,10 +128,12 @@ def prepare_enviroment(): blip_commit_hash = os.environ.get('BLIP_COMMIT_HASH', "48211a1594f1321b00f14c9f7a5b4813144b2fb9")
sys.argv += shlex.split(commandline_args)
+ test_argv = [x for x in sys.argv if x != '--tests']
sys.argv, skip_torch_cuda_test = extract_arg(sys.argv, '--skip-torch-cuda-test')
sys.argv, reinstall_xformers = extract_arg(sys.argv, '--reinstall-xformers')
sys.argv, update_check = extract_arg(sys.argv, '--update-check')
+ sys.argv, run_tests = extract_arg(sys.argv, '--tests')
xformers = '--xformers' in sys.argv
deepdanbooru = '--deepdanbooru' in sys.argv
ngrok = '--ngrok' in sys.argv
@@ -194,6 +196,26 @@ def prepare_enviroment(): print("Exiting because of --exit argument")
exit(0)
+ if run_tests:
+ tests(test_argv)
+ exit(0)
+
+
+def tests(argv):
+ if "--api" not in argv:
+ argv.append("--api")
+
+ print(f"Launching Web UI in another process for testing with arguments: {' '.join(argv[1:])}")
+
+ with open('test/stdout.txt', "w", encoding="utf8") as stdout, open('test/stderr.txt', "w", encoding="utf8") as stderr:
+ proc = subprocess.Popen([sys.executable, *argv], stdout=stdout, stderr=stderr)
+
+ import test.server_poll
+ test.server_poll.run_tests()
+
+ print(f"Stopping Web UI process with id {proc.pid}")
+ proc.kill()
+
def start_webui():
print(f"Launching Web UI with arguments: {' '.join(sys.argv[1:])}")
diff --git a/localizations/ar_AR.json b/localizations/ar_AR.json index 271ebb87..abbbcff4 100644 --- a/localizations/ar_AR.json +++ b/localizations/ar_AR.json @@ -26,8 +26,21 @@ "Sampling Steps": "عدد الخطوات", "Sampling method": "أسلوب الخطو", "Which algorithm to use to produce the image": "Sampler: اسم نظام تحديد طريقة تغيير المسافات بين الخطوات", + "Euler a": "Euler a", "Euler Ancestral - very creative, each can get a completely different picture depending on step count, setting steps to higher than 30-40 does not help": "Euler Ancestral: طريقة مبدعة يمكن أن تنتج صور مختلفة على حسب عدد الخطوات، لا تتغير بعد 30-40 خطوة", + "Euler": "Euler", + "LMS": "LMS", + "Heun": "Heun", + "DPM2": "DPM2", + "DPM2 a": "DPM2 a", + "DPM fast": "DPM fast", + "DPM adaptive": "DPM adaptive", + "LMS Karras": "LMS Karras", + "DPM2 Karras": "DPM2 Karras", + "DPM2 a Karras": "DPM2 a Karras", + "DDIM": "DDIM", "Denoising Diffusion Implicit Models - best at inpainting": "Denoising Diffusion Implicit Models: الأفضل في الإنتاج الجزئي", + "PLMS": "PLMS", "Width": "العرض", "Height": "الإرتفاع", "Restore faces": "تحسين الوجوه", @@ -58,6 +71,7 @@ "Resize seed from height": "إرتفاع الممزوج", "Make an attempt to produce a picture similar to what would have been produced with same seed at specified resolution": "Seed resize from: حدد دقة صورة الممزوج (0: نفس دقة الإنتاج)", "Open for Clip Aesthetic!": "تضمين تجميلي", + "▼": "▼", "Aesthetic weight": "أثر التضمين", "Aesthetic steps": "عدد الخطوات", "Aesthetic learning rate": "معدل التعلم", @@ -79,7 +93,6 @@ "-": "-", "or": "أو", "Click to Upload": "انقر للرفع", - "Prompts": "قائمة الطلبات", "X/Y plot": "مصفوفة عوامل", "X type": "العامل الأول", "Nothing": "لا شيء", @@ -92,6 +105,8 @@ "Checkpoint name": "ملف الأوزان", "Hypernetwork": "الشبكة الفائقة", "Hypernet str.": "قوة الشبكة الفائقة", + "Inpainting conditioning mask strength": "قوة قناع الإنتاج الجزئي", + "Only applies to inpainting models. Determines how strongly to mask off the original image for inpainting and img2img. 1.0 means fully masked, which is the default behaviour. 0.0 means a fully unmasked conditioning. Lower values will help preserve the overall composition of the image, but will struggle with large changes.": "حدد مدى صرامة قناع الإنتاج، يصبح القناع شفاف إذا قوته 0 (لا يعمل إلا مع ملفات أوزان الإنتاج الجزئي: inpainting)", "Sigma Churn": "العشوائية (Schurn)", "Sigma min": "أدنى تشويش (Stmin)", "Sigma max": "أقصى تشويش (Stmax)", @@ -99,6 +114,7 @@ "Eta": "العامل Eta η", "Clip skip": "تخطي آخر طبقات CLIP", "Denoising": "المدى", + "Cond. Image Mask Weight": "قوة قناع الإنتاج الجزئي", "X values": "قيم العامل الأول", "Separate values for X axis using commas.": "افصل القيم بفواصل (,) من اليسار إلى اليمين", "Y type": "العامل الثاني", @@ -168,6 +184,12 @@ "Tile overlap": "تداخل النافذة", "For SD upscale, how much overlap in pixels should there be between tiles. Tiles overlap so that when they are merged back into one picture, there is no clearly visible seam.": "المكبر ينظر إلى أجزاء الصورة من خلال نافذة لتكبير المحتوى ثم ينتقل إلى الجزء المجاور، يفضل أن يكون هناك تداخل بين كل رقعة لكي لا يكون هناك اختلاف واضح بينهم", "Upscaler": "طريقة التكبير", + "Lanczos": "Lanczos", + "LDSR": "LDSR", + "ScuNET GAN": "ScuNET GAN", + "ScuNET PSNR": "ScuNET PSNR", + "ESRGAN_4x": "ESRGAN_4x", + "SwinIR 4x": "SwinIR 4x", "Inpaint": "إنتاج جزئي", "Draw mask": "ارسم القناع", "Upload mask": "ارفع القناع", @@ -192,6 +214,7 @@ "GFPGAN visibility": "أثر GFPGAN (محسن وجوه)", "CodeFormer visibility": "أثر CodeFormer (محسن وجوه)", "CodeFormer weight (0 = maximum effect, 1 = minimum effect)": "وزن CodeFormer (يزيد التفاصيل على حساب الجودة)", + "Upscale Before Restoring Faces": "كبر قبل تحسين الوجوه", "Scale to": "دقة محددة", "Crop to fit": "قص الأطراف الزائدة إذا لم تتناسب الأبعاد", "Batch Process": "حزمة صور", @@ -199,7 +222,6 @@ "A directory on the same machine where the server is running.": "مسار مجلد صور موجود في جهاز الخادم", "Leave blank to save images to the default path.": "اتركه فارغا لاستخدام المسار الإفتراضي", "Show result images": "اعرض الصور الناتجة", - "Open output directory": "افتح مجلد المخرجات", "PNG Info": "عوامل الصورة", "Send to txt2img": "أرسل لنص إلى صورة", "Checkpoint Merger": "مزج الأوزان", @@ -232,7 +254,41 @@ "Enter hypernetwork layer structure": "ترتيب مضاعفات عرض الطبقات", "1st and last digit must be 1. ex:'1, 2, 1'": "المضاعفين الأول والأخير يجب أن يكونا 1، مثال: 1, 2, 1", "Select activation function of hypernetwork": "دالة التنشيط", + "linear": "linear", + "relu": "relu", + "leakyrelu": "leakyrelu", + "elu": "elu", + "swish": "swish", + "tanh": "tanh", + "sigmoid": "sigmoid", + "celu": "celu", + "gelu": "gelu", + "glu": "glu", + "hardshrink": "hardshrink", + "hardsigmoid": "hardsigmoid", + "hardtanh": "hardtanh", + "logsigmoid": "logsigmoid", + "logsoftmax": "logsoftmax", + "mish": "mish", + "prelu": "prelu", + "rrelu": "rrelu", + "relu6": "relu6", + "selu": "selu", + "silu": "silu", + "softmax": "softmax", + "softmax2d": "softmax2d", + "softmin": "softmin", + "softplus": "softplus", + "softshrink": "softshrink", + "softsign": "softsign", + "tanhshrink": "tanhshrink", + "threshold": "threshold", "Select Layer weights initialization. relu-like - Kaiming, sigmoid-like - Xavier is recommended": "تهيئة الأوزان (استخدم Kaiming مع relu وأمثالها وXavier مع sigmoid وأمثالها)", + "Normal": "Normal", + "KaimingUniform": "KaimingUniform", + "KaimingNormal": "KaimingNormal", + "XavierUniform": "XavierUniform", + "XavierNormal": "XavierNormal", "Add layer normalization": "أضف تسوية الطبقات (LayerNorm)", "Use dropout": "استخدم الإسقاط (Dropout)", "Overwrite Old Hypernetwork": "استبدل الشبكة الفائقة القديمة", @@ -393,6 +449,7 @@ "Add model hash to generation information": "أضف رمز تهشير (Hash) ملف الأوزان لعوامل الإنتاج", "Add model name to generation information": "أضف اسم ملف الأوزان لعوامل الإنتاج", "When reading generation parameters from text into UI (from PNG info or pasted text), do not change the selected model/checkpoint.": "لا تغير الأوزان المختارة عند قراءة عوامل الإنتاج من صورة أو من ملف", + "Send seed when sending prompt or image to other interface": "عند إرسال صورة أو طلب ألحق البذرة أيضا", "Font for image grids that have text": "نوع الخط في جداول الصور التي تحتوي على نصوص", "Enable full page image viewer": "اسمح بعرض الصور في وضع ملئ الشاشة", "Show images zoomed in by default in full page image viewer": "اعرض الصور مقربة عند استخدام وضع ملئ الشاشة", @@ -400,6 +457,18 @@ "Quicksettings list": "قائمة الإعدادات السريعة", "List of setting names, separated by commas, for settings that should go to the quick access bar at the top, rather than the usual setting tab. See modules/shared.py for setting names. Requires restarting to apply.": "قائمة مقسمة بفواصل لأسماء الإعدادات التي يجب أن تظهر في الأعلى لتسهيل الوصول إليها، انظر إلى modules/shared.py لمعرفة الأسماء، يتطلب إعادة تشغيل", "Localization (requires restart)": "اللغة (تتطلب إعادة تشغيل)", + "pt_BR": "البرتغالية", + "zh_CN": "الصينية", + "ko_KR": "الكورية", + "fr_FR": "الفرنسية", + "ru_RU": "الروسية", + "ar_AR": "العربية", + "tr_TR": "التركية", + "it_IT": "الإيطالية", + "ja_JP": "اليابانية", + "de_DE": "الألمانية", + "zh_TW": "الصينية (تايوان)", + "es_ES": "الإسبانية", "Sampler parameters": "عوامل أساليب الخطو", "Hide samplers in user interface (requires restart)": "اخف أساليب الخطو التالية (يتطلب إعادة تشغيل)", "eta (noise multiplier) for DDIM": "العامل Eta η لأسلوب الخطو DDIM", @@ -420,5 +489,30 @@ "Request browser notifications": "اطلب تنبيهات المتصفح", "Download localization template": "حمل ملف اللغة", "Reload custom script bodies (No ui updates, No restart)": "أعد تحميل الأدوات الخاصة (بدون واجهة المستخدم ولا يحتاج إعادة تشغيل)", - "Restart Gradio and Refresh components (Custom Scripts, ui.py, js and css only)": "أعد تشغيل gradio وتحميل الأدوات الخاصة وواجهة المستخدم" -}
\ No newline at end of file + "Restart Gradio and Refresh components (Custom Scripts, ui.py, js and css only)": "أعد تشغيل gradio وتحميل الأدوات الخاصة وواجهة المستخدم", + "⤡": "⤡", + "⊞": "⊞", + "×": "×", + "❮": "❮", + "❯": "❯", + "•": "•", + "Label": "Label", + "File": "File", + "Image": "Image", + "Check progress": "Check progress", + "Check progress (first)": "Check progress (first)", + "Textbox": "Textbox", + "Image for img2img": "Image for img2img", + "Image for inpainting with mask": "Image for inpainting with mask", + "Mask": "Mask", + "Mask mode": "Mask mode", + "Masking mode": "Masking mode", + "Resize mode": "Resize mode", + "Prev batch": "Prev batch", + "Next batch": "Next batch", + "Refresh page": "Refresh page", + "Date to": "Date to", + "Number": "Number", + "set_index": "set_index", + "Checkbox": "Checkbox" +} diff --git a/localizations/it_IT.json b/localizations/it_IT.json index d05035f9..9752f71c 100644 --- a/localizations/it_IT.json +++ b/localizations/it_IT.json @@ -1,492 +1,1070 @@ { - "⤡": "⤡", - "⊞": "⊞", - "×": "×", - "❮": "❮", - "❯": "❯", - "Loading...": "Caricamento...", - "view": "mostra ", - "api": "API", - "•": "•", - "built with gradio": "Sviluppato con Gradio", - "Stable Diffusion checkpoint": "Stable Diffusion checkpoint", - "txt2img": "txt2img", - "img2img": "img2img", - "Extras": "Extra", - "PNG Info": "PNG Info", - "Checkpoint Merger": "Checkpoint Merger", - "Train": "Train", - "Image Browser": "Galleria Immagini", - "Settings": "Impostazioni", - "Prompt": "Prompt", - "Negative prompt": "Prompt negativo", - "Run": "Esegui", - "Skip": "Salta", - "Interrupt": "Interrompi", - "Generate": "Genera", - "Style 1": "Stile 1", - "Style 2": "Stile 2", - "Label": "Etichetta", - "File": "File", - "Drop File Here": "Trascina il file qui", - "-": "-", - "or": "o", - "Click to Upload": "Clicca per caricare", - "Image": "Immagine", - "Check progress": "Verifica progresso", - "Check progress (first)": "Verifica progresso (iniziale)", - "Sampling Steps": "Sampling Steps", - "Sampling method": "Sampling method", - "Euler a": "Euler a", - "Euler": "Euler", - "LMS": "LMS", - "Heun": "Heun", - "DPM2": "DPM2", - "DPM2 a": "DPM2 a", - "DPM fast": "DPM fast", - "DPM adaptive": "DPM adaptive", - "LMS Karras": "LMS Karras", - "DPM2 Karras": "DPM2 Karras", - "DPM2 a Karras": "DPM2 a Karras", - "DDIM": "DDIM", - "PLMS": "PLMS", - "Width": "Larghezza", - "Height": "Altezza", - "Restore faces": "Ripristina volti", - "Tiling": "Tiling", - "Highres. fix": "Highres. fix", - "Firstpass width": "Larghezza del primo step", - "Firstpass height": "Altezza del primo step", - "Denoising strength": "Denoising strength", - "Batch count": "Batch count", - "Batch size": "Batch size", - "CFG Scale": "CFG Scale", - "Seed": "Seed", - "Extra": "Extra", - "Variation seed": "Variation seed", - "Variation strength": "Variation strength", - "Resize seed from width": "Ridimensiona seed da larghezza", - "Resize seed from height": "Ridimensiona seed da altezza", - "Script": "Script", - "None": "Nessuno", - "Prompt matrix": "Prompt matrix", - "Prompts from file or textbox": "Prompts da file o casella di testo", - "X/Y plot": "X/Y plot", - "Put variable parts at start of prompt": "Inserisce una parte variabile all'inizio del prompt", - "Iterate seed every line": "Itera seed per ogni linea", - "List of prompt inputs": "Lista dei prompt in input", - "Upload prompt inputs": "Carica prompt di input", - "Show Textbox": "Mostra la casella di testo", - "File with inputs": "File con input", - "Prompts": "Prompts", - "X type": "X type", - "Nothing": "Nulla", - "Var. seed": "Var. seed", - "Var. strength": "Var. strength", - "Steps": "Steps", - "Prompt order": "Prompt order", - "Sampler": "Sampler", - "Checkpoint name": "Checkpoint name", - "Hypernetwork": "Hypernetwork", - "Hypernet str.": "Hypernet str.", - "Sigma Churn": "Sigma Churn", - "Sigma min": "Sigma min", - "Sigma max": "Sigma max", - "Sigma noise": "Sigma noise", - "Eta": "Eta", - "Clip skip": "Clip skip", - "Denoising": "Denoising", - "X values": "X values", - "Y type": "Y type", - "Y values": "Y values", - "Draw legend": "Disegna legenda", - "Include Separate Images": "Includi immagini separate", - "Keep -1 for seeds": "Mantieni il seed a -1", - "Drop Image Here": "Trascina l'immagine qui", - "Save": "Salva", - "Send to img2img": "Invia a img2img", - "Send to inpaint": "Invia a inpaint", - "Send to extras": "Invia a extra", - "Make Zip when Save?": "Creare Zip al salvataggio?", - "Textbox": "Casella di testo", - "Interrogate\nCLIP": "Interroga\nCLIP", - "Inpaint": "Inpaint", - "Batch img2img": "Batch img2img", - "Image for img2img": "Immagine per img2img", - "Image for inpainting with mask": "Immagine per inpainting con maschera", - "Mask": "Mask", - "Mask blur": "Maschera sfocatura", - "Mask mode": "Modalità maschera", - "Draw mask": "Disegna maschera", - "Upload mask": "Carica maschera", - "Masking mode": "Modalità mascheramento", - "Inpaint masked": "Inpaint mascherato", - "Inpaint not masked": "Inpaint non mascherato", - "Masked content": "Maschera contenuto", - "fill": "riempi", - "original": "originale", - "latent noise": "latent noise", - "latent nothing": "latent nothing", - "Inpaint at full resolution": "Inpaint alla massima risoluzione", - "Inpaint at full resolution padding, pixels": "Inpaint alla massima risoluzione padding, pixels", - "Process images in a directory on the same machine where the server is running.": "Processa le immagini in una cartella nella stessa macchina in cui il server è stato lanciato.", - "Use an empty output directory to save pictures normally instead of writing to the output directory.": "Usa una cartella di output vuota per salvare le immagini normalmente invece di scrivere nella cartella di output", - "Input directory": "Cartella di Input", - "Output directory": "Cartella di Output", - "Resize mode": "Modalità ridimensionamento", - "Just resize": "Solo ridimensionamento", - "Crop and resize": "Taglia e Ridimensiona", - "Resize and fill": "Ridimensiona e Riempi", - "img2img alternative test": "img2img alternative test", - "Loopback": "Loopback", - "Outpainting mk2": "Outpainting mk2", - "Poor man's outpainting": "Poor man's outpainting", - "SD upscale": "SD upscale", - "should be 2 or lower.": "deve essere 2 o inferiore.", - "Override `Sampling method` to Euler?(this method is built for it)": "Ripristinare il `Sampling method` in Euler?(metodo di default)", - "Override `prompt` to the same value as `original prompt`?(and `negative prompt`)": "Ripristinare il `prompt` al valore del `prompt originale`? (e `prompt negativo`)", - "Original prompt": "Prompt originale", - "Original negative prompt": "Promp negativo originale", - "Override `Sampling Steps` to the same value as `Decode steps`?": "Ripristinare il `Sampling Steps` al valore di `Decode steps`?", - "Decode steps": "Decode steps", - "Override `Denoising strength` to 1?": "Ripristinare `Denoising strength` a 1?", - "Decode CFG scale": "Decode CFG scale", - "Randomness": "Casualità", - "Sigma adjustment for finding noise for image": "Sigma adjustment for finding noise for image. ", - "Loops": "Loops", - "Denoising strength change factor": "Denoising strength change factor", - "Recommended settings: Sampling Steps: 80-100, Sampler: Euler a, Denoising strength: 0.8": "Impostazioni Raccomandate: Sampling Steps: 80-100, Sampler: Euler a, Denoising strength: 0.8", - "Pixels to expand": "Pixels to expand", - "Outpainting direction": "Direzione Outpainting", - "left": "sinistra", - "right": "destra", - "up": "su", - "down": "giù", - "Fall-off exponent (lower=higher detail)": "Fall-off exponent (inferiore=maggiori dettagli)", - "Color variation": "Variazione del colore", - "Will upscale the image to twice the dimensions; use width and height sliders to set tile size": "Verrà effettuato l'upscale dell'immagine di due volte le sue dimensioni; usa gli sliders di larghezza e altezza per configurare la dimensione del tile", - "Tile overlap": "Sovrapposizione Tile", - "Upscaler": "Upscaler", - "Lanczos": "Lanczos", - "LDSR": "LDSR", - "SwinIR 4x": "SwinIR 4x", - "ScuNET GAN": "ScuNET GAN", - "ScuNET PSNR": "ScuNET PSNR", - "ESRGAN_4x": "ESRGAN_4x", - "Single Image": "Singola Immagine", - "Batch Process": "Batch Process", - "Batch from Directory": "Batch da Cartella", - "Source": "Sorgente", - "Show result images": "Mostra risultati", - "Scale by": "Scala di", - "Scale to": "Scala a", - "Resize": "Ridimensionamento", - "Crop to fit": "Taglia per adeguare", - "Upscaler 2 visibility": "Visibilità Upscaler 2", - "GFPGAN visibility": "Visibilità GFPGAN", - "CodeFormer visibility": "Visibilità CodeFormer", - "CodeFormer weight (0 = maximum effect, 1 = minimum effect)": "Peso CodeFormer (0 = effetto massimo, 1 = effetto minimo)", - "Open output directory": "Apri cartella di output", - "Send to txt2img": "Invia a txt2img", - "A merger of the two checkpoints will be generated in your": "Una fusione dei due checkpoint sarà generata nella ", - "checkpoint": "checkpoint", - "directory.": " directory.", - "Primary model (A)": "Primo modello (A)", - "Secondary model (B)": "Secondo modello (B)", - "Tertiary model (C)": "Terzo modello (C)", - "Custom Name (Optional)": "Nome Personalizzato (opzionale)", - "Multiplier (M) - set to 0 to get model A": "Moltiplicatore (M) - Imposta 0 per ottenere il modello A", - "Interpolation Method": "Metodo di Interpolazione", - "Weighted sum": "Somma pesata", - "Add difference": "Add difference", - "Save as float16": "Salva come float16", - "See": "Verifica la ", - "wiki": "wiki ", - "for detailed explanation.": "per una spiegazione dettagliata.", - "Create embedding": "Crea embedding", - "Create hypernetwork": "Crea hypernetwork", - "Preprocess images": "Pre-processa immagini", - "Name": "Nome", - "Initialization text": "Testo di Inizializzazione", - "Number of vectors per token": "Numero di vettori per token", - "Overwrite Old Embedding": "Sovrascrivi Vecchio Embedding", - "Modules": "Moduli", - "Enter hypernetwork layer structure": "Inserisci la struttura livelli dell'hypernetwork", - "Select activation function of hypernetwork": "Seleziona la funzione di attivazione dell'hypernetwork", - "linear": "linear", - "relu": "relu", - "leakyrelu": "leakyrelu", - "elu": "elu", - "swish": "swish", - "tanh": "tanh", - "sigmoid": "sigmoid", - "celu": "celu", - "gelu": "gelu", - "glu": "glu", - "hardshrink": "hardshrink", - "hardsigmoid": "hardsigmoid", - "hardswish": "hardswish", - "hardtanh": "hardtanh", - "logsigmoid": "logsigmoid", - "logsoftmax": "logsoftmax", - "mish": "mish", - "multiheadattention": "multiheadattention", - "prelu": "prelu", - "rrelu": "rrelu", - "relu6": "relu6", - "selu": "selu", - "silu": "silu", - "softmax": "softmax", - "softmax2d": "softmax2d", - "softmin": "softmin", - "softplus": "softplus", - "softshrink": "softshrink", - "softsign": "softsign", - "tanhshrink": "tanhshrink", - "threshold": "threshold", - "Select Layer weights initialization. relu-like - Kaiming, sigmoid-like - Xavier is recommended": "Seleziona Inizializzazione dei pesi dei livelli. (relu-like: Kaiming, sigmoid-like: Xavier). Xavier è raccomandato", - "Normal": "Normal", - "KaimingUniform": "KaimingUniform", - "KaimingNormal": "KaimingNormal", - "XavierUniform": "XavierUniform", - "XavierNormal": "XavierNormal", - "Add layer normalization": "Aggiungi normalizzazione dei livelli", - "Use dropout": "Usa dropout", - "Overwrite Old Hypernetwork": "Sovrascrivi Vecchio Hypernetwork", - "Source directory": "Cartella sorgente", - "Destination directory": "Cartella di destinazione", - "Existing Caption txt Action": "Azione in caso di didascalia già presente", - "ignore": "ignora", - "copy": "copia", - "prepend": "anteponi", - "append": "apponi", - "Create flipped copies": "Crea copie specchiate", - "Split oversized images": "Dividi immagini grandi", - "Use BLIP for caption": "Usa BLIP per la didascalia", - "Use deepbooru for caption": "Usa deepbooru per la didascalia", - "Split image threshold": "Dividi Threshold immagine", - "Split image overlap ratio": "Rapporto di sovrapposizione dell'immagine", - "Preprocess": "Preprocessa", - "Train an embedding or Hypernetwork; you must specify a directory with a set of 1:1 ratio images": "Train an embedding or Hypernetwork; you must specify a directory with a set of 1:1 ratio images", - "[wiki]": "[wiki]", - "Embedding": "Embedding", - "Embedding Learning rate": "Embedding Learning rate", - "Hypernetwork Learning rate": "Hypernetwork Learning rate", - "Dataset directory": "Cartella dataset", - "Log directory": "Cartella log", - "Prompt template file": "Prompt template file", - "Max steps": "Max steps", - "Save an image to log directory every N steps, 0 to disable": "Salva un'immagine ogni N step, 0 per disabilitare", - "Save a copy of embedding to log directory every N steps, 0 to disable": "Salva una copia dell'embedding nella cartella log ogni N step, 0 per disabilitare", - "Save images with embedding in PNG chunks": "Salva le immagini con embedding in PNG", - "Read parameters (prompt, etc...) from txt2img tab when making previews": "Usa i parametri (prompt, etc...) di txt2img per visualizzare le anteprime", - "Train Hypernetwork": "Train Hypernetwork", - "Train Embedding": "Train Embedding", - "extras": "Extra", - "favorites": "Preferiti", - "custom fold": "Cartella personalizzata", - "Load": "Carica", - "Images directory": "Cartella Immagini", - "Prev batch": "Batch Precedente", - "Next batch": "Batch Successivo", - "First Page": "Prima Pagina", - "Prev Page": "Pagina Precedente", - "Page Index": "Indice Pagina", - "Next Page": "Pagina Successiva", - "End Page": "Pagina Finale", - "number of images to delete consecutively next": "numero di immagini da eliminare consecutivamente a seguire", - "Delete": "Elimina", - "Generate Info": "Genera Info", - "File Name": "Nome File", - "Collect": "Ottieni", - "Refresh page": "Aggiorna Pagina", - "Date to": "Data fine", - "Number": "Numero", - "set_index": "set_index", - "Checkbox": "Checkbox", - "Apply settings": "Applica impostazioni", - "Saving images/grids": "Salvataggio immagini/griglie", - "Always save all generated images": "Salva sempre tutte le immagini generate", - "File format for images": "Formato file per le immagini", - "Images filename pattern": "Configura Pattern per il nome dei file immagine", - "Add number to filename when saving": "Aggiungi un numero al nome del file al salvataggio", - "Always save all generated image grids": "Salva sempre tutte le griglie delle immagini generate", - "File format for grids": "Formato file per le giglie", - "Add extended info (seed, prompt) to filename when saving grid": "Aggiungi informazioni estese (seed, prompt) al nome del file al salvataggio della griglia", - "Do not save grids consisting of one picture": "Non salvare griglie composte da una sola immagine", - "Prevent empty spots in grid (when set to autodetect)": "Previeni spazi vuoti nella griglia", - "Grid row count; use -1 for autodetect and 0 for it to be same as batch size": "Numero righe griglia; usa -1 per trovarlo automaticamente e 0 per essere lo stesso del batch size", - "Save text information about generation parameters as chunks to png files": "Salva le informazioni dei parametri di generazione come chunks nei file PNG", - "Create a text file next to every image with generation parameters.": "Crea un file di testo per ogni immagine con i parametri di generazione.", - "Save a copy of image before doing face restoration.": "Salva una copia dell'immagine prima di fare la riparazione volti.", - "Quality for saved jpeg images": "Qualità per le immagini salvate in JPEG", - "If PNG image is larger than 4MB or any dimension is larger than 4000, downscale and save copy as JPG": "Se l'immagine PNG image è più grande di 4MB o qualsiasi dimensione maggiore di 4000, effettua il downscale e salva come JPG", - "Use original name for output filename during batch process in extras tab": "Usa il nome originale del file come nome del file di output durante il 'batch process' nella tab 'extras'", - "When using 'Save' button, only save a single selected image": "Usando il tasto 'Save', verrà salvata solo la singola immagine selezionata", - "Do not add watermark to images": "Non aggiungere watermark alle immagini", - "Paths for saving": "Percorsi per il salvataggio", - "Output directory for images; if empty, defaults to three directories below": "Cartella di Output globale per immagini; se vuota, verranno usate di default le cartelle indicate sotto", - "Output directory for txt2img images": "Cartella di Output per txt2img", - "Output directory for img2img images": "Cartella di Output per img2img", - "Output directory for images from extras tab": "Cartella di Output per immagini dalla tab 'extra'", - "Output directory for grids; if empty, defaults to two directories below": "Cartella di Output globale per le griglie; se vuota, verranno usate di default le cartelle indicate sotto", - "Output directory for txt2img grids": "Cartella di Output per txt2img grids", - "Output directory for img2img grids": "Cartella di Output per img2img grids", - "Directory for saving images using the Save button": "Cartella di Output per il salvataggion con il tasto 'Salva'", - "Saving to a directory": "Salvataggio in cartelle", - "Save images to a subdirectory": "Salva immagini in una sottocartella", - "Save grids to a subdirectory": "Salva griglie in una sottocartella", - "When using \"Save\" button, save images to a subdirectory": "Usando il tasto \"Salva\", le immagini verranno salvate in una sottocartella", - "Directory name pattern": "Pattern del nome della cartella", - "Max prompt words for [prompt_words] pattern": "Massimo numero di parole per il pattern [prompt_words]", - "Upscaling": "Upscaling", - "Tile size for ESRGAN upscalers. 0 = no tiling.": "Dimensione Tile per upscalers ESRGAN. 0 = no tiling.", - "Tile overlap, in pixels for ESRGAN upscalers. Low values = visible seam.": "Sovrapposizione Tile, in pixels per upscalers ESRGAN. Valore basso = taglio visible.", - "Tile size for all SwinIR.": "Dimensione Tile per SwinIR.", - "Tile overlap, in pixels for SwinIR. Low values = visible seam.": "Sovrapposizione Tile, in pixels per upscalers SwinIR. Valore basso = taglio visible.", - "LDSR processing steps. Lower = faster": "LDSR processing steps. Basso = Veloce", - "Upscaler for img2img": "Upscaler per img2img", - "Upscale latent space image when doing hires. fix": "Upscale latent space image when doing hires. fix", - "Face restoration": "Ripristino volti", - "CodeFormer weight parameter; 0 = maximum effect; 1 = minimum effect": "Peso CodeFormer; 0 = effetto massimo; 1 = effetto minimo", - "Move face restoration model from VRAM into RAM after processing": "Sposta il modello di ripristino volti dalla VRAM alla RAM dopo averlo processato", - "System": "Sistema", - "VRAM usage polls per second during generation. Set to 0 to disable.": "Utilizzo VRAM al secondo durante la generazione. Imposta 0 per disabilitare.", - "Always print all generation info to standard output": "Mostra sempre tutte le informazioni della generazione nello standard output", - "Add a second progress bar to the console that shows progress for an entire job.": "Aggiungi una seconda progress bar alla console per mostrare il progresso complessivo della generazione.", - "Training": "Training", - "Move VAE and CLIP to RAM when training hypernetwork. Saves VRAM.": "Sposta VAE e CLIP in RAM durante il training di hypernetwork. Risparmia VRAM.", - "Filename word regex": "Filename word regex", - "Filename join string": "Filename join string", - "Number of repeats for a single input image per epoch; used only for displaying epoch number": "Numero di ripetizioni per singola immagine in input per epoch; usato solo per mostrare il numero di epoch", - "Save an csv containing the loss to log directory every N steps, 0 to disable": "Salva un csv contenente il loss nella cartella log ogni N step, 0 per disabilitare", - "Stable Diffusion": "Stable Diffusion", - "Checkpoints to cache in RAM": "Checkpoints da memorizzare in RAM", - "Hypernetwork strength": "Hypernetwork strength", - "Apply color correction to img2img results to match original colors.": "Applica color correction ai risultati img2img per uguagliare i colori originali.", - "Save a copy of image before applying color correction to img2img results": "Salva una copia dell'immagine prima di applicare la color correction ai risultati img2img", - "With img2img, do exactly the amount of steps the slider specifies (normally you'd do less with less denoising).": "Con img2img, effettua esattamente la quantità di step indicata (normalmente se ne effettuano di meno con meno riduzione del disturbo).", - "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply.": "Abilita la quantizzazione nei campionatori K per risultati più nitidi e puliti. Questo può cambiare seed esistenti. Richiede il riavvio per essere applicato.", - "Emphasis: use (text) to make model pay more attention to text and [text] to make it pay less attention": "Enfasi: usa (testo) per far prestare maggiore attenzione al testo indicato e [testo] per renderlo meno importante", - "Use old emphasis implementation. Can be useful to reproduce old seeds.": "Usa la vecchia implementazione per l'enfasi. Può essere utile per riprodurre vecchi seeds.", - "Make K-diffusion samplers produce same images in a batch as when making a single image": "Fa sì che i K-Diffusion producano le stesse immagini in un batch come quando si effettuano una singola immagine", - "Increase coherency by padding from the last comma within n tokens when using more than 75 tokens": "Aumenta la coerenza aggiungendo dall'ultima virgola ulteriori N token quando si usano più di 75 token.", - "Filter NSFW content": "Filtra contenuti NSFW", - "Stop At last layers of CLIP model": "Fermati all'ultimo livello del modello CLIP", - "Interrogate Options": "Opzioni Interrogate", - "Interrogate: keep models in VRAM": "Interrogate: mantieni modelli nella VRAM", - "Interrogate: use artists from artists.csv": "Interrogate: usa artisti dal file artists.csv", - "Interrogate: include ranks of model tags matches in results (Has no effect on caption-based interrogators).": "Interrogate: include ranks of model tags matches in results (Has no effect on caption-based interrogators).", - "Interrogate: num_beams for BLIP": "Interrogate: num_beams per BLIP", - "Interrogate: minimum description length (excluding artists, etc..)": "Interrogate: minima lunghezza della descrizione (escludendo artisti, etc..)", |