diff --git a/localizations/pt_BR.json b/localizations/pt_BR.json index d4572d9..02a6c14 100644 --- a/localizations/pt_BR.json +++ b/localizations/pt_BR.json @@ -16,7 +16,12 @@ "PNG Info": "Informações de PNG", "Checkpoint Merger": "Fusão de Checkpoint", "Train": "Treinar", + "Deforum": "Deforum", + "Wildcards Manager": "Administrador de Coringas", "Dreambooth": "Dreambooth", + "Depth": "Profundidade", + "Embedding Editor": "Editor de Incorporações", + "Training Picker": "Training Picker", "Settings": "Configurações", "Extensions": "Extensões", "Prompt": "Prompt", @@ -46,6 +51,7 @@ "DPM2 a": "DPM2 a", "DPM++ 2S a": "DPM++ 2S a", "DPM++ 2M": "DPM++ 2M", + "DPM++ SDE": "DPM++ SDE", "DPM fast": "DPM fast", "DPM adaptive": "DPM adaptive", "LMS Karras": "LMS Karras", @@ -53,6 +59,7 @@ "DPM2 a Karras": "DPM2 a Karras", "DPM++ 2S a Karras": "DPM++ 2S a Karras", "DPM++ 2M Karras": "DPM++ 2M Karras", + "DPM++ SDE Karras": "DPM++ SDE Karras", "DDIM": "DDIM", "PLMS": "PLMS", "Width": "Largura", @@ -72,12 +79,75 @@ "Variation strength": "Força da variação", "Resize seed from width": "Redimensionar a seed a partir da largura", "Resize seed from height": "Redimensionar a seed a partir da altura", + "Dynamic Prompts": "Prompts Dinâmicos", + "▼": "▼", + "Dynamic Prompts enabled": "Prompts Dinâmicos ativado", + "Combinatorial generation": "Geração Combinatória", + "Combinatorial batches": "Lotes Combinatórios", + "Magic prompt": "Prompt mágico", + "Max magic prompt length": "Tamanhdo máximo do prompt mágico", + "Magic prompt creativity": "Criatividade do prompt mágico", + "I'm feeling lucky": "Estou com sorte", + "Attention grabber": "Foco de atenção", + "Write prompts to file": "Escrever prompts para o arquivo", + "Don't generate images": "Não gerar imagens", + "Enable comments": "Ativar comentários", + "Help": "Ajuda", + "Combinations": "Combinações", + "Choose a number of terms from a list, in this case we choose two artists:": "Escolha um número de termos de uma lista, nesse caso nós escolhemos dois artistas:", + "{2$$artist1|artist2|artist3}": "{2$$artist1|artist2|artist3}", + "If $$ is not provided, then 1$$ is assumed.": "Se $$ não for providenciado, então se assume 1$$.", + "If the chosen number of terms is greater than the available terms, then some terms will be duplicated, otherwise chosen terms will be unique. This is useful in the case of wildcards, e.g.": "Se o número escolhido de termos é maior que a quantidade de termos disponíveis, alguns termos serão duplicados, caso contrário alguns termos serão únicos. Essa opção é útil no exemplo de Coringas.", + "{2$$__artist__}": "{2$$__artist__}", + "is equivalent to": "é equivalente a", + "{2$$__artist__|__artist__}": "{2$$__artist__|__artist__}", + "A range can be provided:": "Uma variação pode ser providenciada:", + "{1-3$$artist1|artist2|artist3}": "{1-3$$artist1|artist2|artist3}", + "In this case, a random number of artists between 1 and 3 is chosen.": "Nesse caso, um número aleatório de artistas é sorteado entre 1 e 2.", + "Wildcards can be used and the joiner can also be specified:": "Coringas podem ser usados e a junção pode ser especificada:", + "{{1-$$and$$__adjective__}}": "{{1-$$and$$__adjective__}}", + "Here, a random number between 1 and 3 words from adjective.txt will be chosen and joined together with the word 'and' instead of the default comma.": "Aqui, um número aleatório entre 1 e 2 palavras do arquivo adjective.txt vai ser escolhido e juntado com a palavra 'and' ao invés da vírgula padrão.", + "Wildcards": "Coringas", + "Find and manage wildcards in the Wildcards Manager tab.": "Encontre e administre coringas na aba de Administração de Corings.", + "You can add more wildcards by creating a text file with one term per line and name is mywildcards.txt. Place it in \\file_path.": "Agora você pode adicionar mais coringas para criação de texto com um termo por linha e o nome é mywildcards.txt. Coloque em \\file_path.", + "__/mywildcards__": "__/mywildcards__", + "will then become available.": "estará disponível.", + "Jinja2 templates": "Templates Jinja2", + "Enable Jinja2 templates": "Ativar templates Jinja2", + "Help for Jinja2 templates": "Ajuda para templates Jinja2", + "Jinja2 templates is an experimental feature for advanced template generation. It is not recommended for general use unless you are comfortable with writing scripts.": "Templates Jinja2 é uma funcionalidade experimental para geração avançada de templates. Não é recomendado para uso geral a não ser que você esteja confortável escrevendo scripts .", + "Literals": "Literais", + "I love red roses": "I love red roses", + "Random choices": "Escolhas aleatórias", + "I love {{ choice('red', 'blue', 'green') }} roses": "I love {{ choice('red', 'blue', 'green') }} roses", + "This will randomly choose one of the three colors.": "Isso vai escolher aleatoriamente uma das três cores.", + "Iterations": "Iterações", + "{% for colour in ['red', 'blue', 'green'] %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}": "{% for colour in ['red', 'blue', 'green'] %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}", + "This will produce three prompts, one for each color. The prompt tag is used to mark the text that will be used as the prompt. If no prompt tag is present then only one prompt is assumed": "Isso vai produzir três prompts, um para cada cor. O rótulo de prompt é usado para marcar o texto que será usado de prompt. Se nenhum rótulo estiver presente, assume-se que é apenas um prompt", + "{% for colour in wildcard(\"__colours__\") %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}": "{% for colour in wildcard(\"__colours__\") %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}", + "This will produce one prompt for each colour in the wildcard.txt file.": "Isso vai produzir um prompt para cada cor no arquivo wildcard.txt.", + "Conditionals": "Conditionais", + "{% for colour in [\"red\", \"blue\", \"green\"] %}\n {% if colour == \"red\"}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% else %}\n {% prompt %}I hate {{ colour }} roses{% endprompt %}\n {% endif %}\n {% endfor %}": "{% for colour in [\"red\", \"blue\", \"green\"] %}\n {% if colour == \"red\"}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% else %}\n {% prompt %}I hate {{ colour }} roses{% endprompt %}\n {% endif %}\n {% endfor %}", + "This will produce the following prompts:": "This will produce the following prompts:", + "I hate blue roses": "I hate blue roses", + "I hate green roses": "I hate green roses", + "Jinja2 templates are based on the Jinja2 template engine. For more information see the": "Os tempaltes Jinja2 são baseados na engine Jinja2. Para mais informações veja a", + "Jinja2 documentation.": "documentação Jinja2.", + "If you are using these templates, please let me know if they are useful.": "Se você está usando esses templates, me avise se eles forem úteis.", + "Advanced options": "Opções avançadas", + "Unlink seed from prompt": "Desconectar seed do prompt", + "Disable negative prompt": "Desativar prompt negative", + "Fixed seed": "Seed fixa", "Script": "Script", "None": "Nenhum", + "Salvar passos de amostragem": "Salvar passos de amostragem", "Prompt matrix": "Matriz de prompt", "Prompts from file or textbox": "Prompts a partir de arquivo ou caixa de texto", "X/Y plot": "X/Y plot", + "DepthMap v0.2.9": "DepthMap v0.2.9", + "Caminho para salvar imagens": "Caminho para salvar imagens", "Put variable parts at start of prompt": "Inserir partes variáveis no começo do prompt", + "Use different seed for each picture": "Usar seed diferente para cada imagem", "Iterate seed every line": "Iterar seed a cada linha", "Use same random seed for all lines": "Usar a mesma seed aleatória para todas as linhas", "List of prompt inputs": "Lista de entradas de prompt", @@ -107,6 +177,33 @@ "Draw legend": "Desenhar a legenda", "Include Separate Images": "Incluir Imagens Separadas", "Keep -1 for seeds": "Manter em -1 para seeds", + "Compute on": "Computar em", + "GPU": "GPU", + "CPU": "CPU", + "Model": "Modelo", + "dpt_large": "dpt_large", + "dpt_hybrid": "dpt_hybrid", + "midas_v21": "midas_v21", + "midas_v21_small": "midas_v21_small", + "res101": "res101", + "Net width": "Largura de rede", + "Net height": "Altura de rede", + "Match input size": "Combinar com o tamanho de entrada", + "BOOST (multi-resolution merging)": "BOOST (fusão de resolução múltipla)", + "Invert DepthMap (black=near, white=far)": "Inverer DepthMap (preto=próximo, branco=distante)", + "Combine into one image.": "Combinar em uma imagem.", + "Combine axis": "Combinar eixos", + "Vertical": "Vertical", + "Horizontal": "Horizontal", + "Save DepthMap": "Salvar DepthMap", + "Show DepthMap": "Mostrar DepthMap", + "Show HeatMap": "Mostrar HeatMap", + "Generate Stereo side-by-side image": "Gerar imagem Stereo lado-a-lado", + "Generate Stereo anaglyph image (red/cyan)": "Gerar imagem anaglífica Stereo (vermelho/ciano)", + "IPD (cm)": "IPD (cm)", + "Screen Width (cm)": "Largura da Tela (cm)", + "Instructions, comment and share @": "Instruções (em inglês), comentários e compartilhamentos @", + "https://github.com/thygate/stable-diffusion-webui-depthmap-script": "https://github.com/thygate/stable-diffusion-webui-depthmap-script", "Save": "Salvar", "Send to img2img": "Mandar para img2img", "Send to inpaint": "Mandar para inpaint", @@ -114,6 +211,7 @@ "Make Zip when Save?": "Criar um Zip quando salvar?", "Textbox": "Caixa de texto", "Interrogate\nCLIP": "Interrogatório\nCLIP", + "Interrogate\nDeepBooru": "Interrogate\nDeepBooru", "Inpaint": "Inpaint", "Batch img2img": "Lote img2img", "Image for img2img": "Imagem para img2img", @@ -121,6 +219,7 @@ "Image for inpainting with mask": "Imagem para inpainting com máscara", "Mask": "Máscara", "Mask blur": "Desfoque da máscara", + "Mask transparency": "Mask transparency", "Mask mode": "Modo de máscara", "Draw mask": "Desenhar máscara", "Upload mask": "Carregar máscara", @@ -147,6 +246,7 @@ "Outpainting mk2": "Outpainting mk2", "Poor man's outpainting": "Poor man`s outpainting", "SD upscale": "Ampliamento SD", + "Deforum-webui (use tab extension instead!)": "Deforum-webui (use tab extension instead!)", "should be 2 or lower.": "deve ser 2 ou menos.", "Override `Sampling method` to Euler?(this method is built for it)": "Substituir `Método de amostragem` por Euler? (este método foi feito para isso)", "Override `prompt` to the same value as `original prompt`?(and `negative prompt`)": "Substituir `prompt` para o mesmo valor que o `prompt original`? (também para o `prompt negativo`)", @@ -169,16 +269,20 @@ "down": "baixo", "Fall-off exponent (lower=higher detail)": "Expoente de queda (menor=mais detalhes)", "Color variation": "Variação de cor", - "Will upscale the image to twice the dimensions; use width and height sliders to set tile size": "Amplia a imagem em dobro; ajusta a largura e altura para definir o tamanho do ladrilho", + "Will upscale the image by the selected scale factor; use width and height sliders to set tile size": "Will upscale the image by the selected scale factor; use width and height sliders to set tile size", "Tile overlap": "Sobreposição de ladrilho", + "Scale Factor": "Scale Factor", "Upscaler": "Ampliador", "Lanczos": "Lanczos", "Nearest": "Mais próximo", "LDSR": "LDSR", - "ESRGAN_4x": "ESRGAN_4x", - "ScuNET GAN": "ScuNET GAN", - "ScuNET PSNR": "ScuNET PSNR", "SwinIR 4x": "SwinIR 4x", + "ESRGAN_4x": "ESRGAN_4x", + "Deforum v0.5-webui-beta": "Deforum v0.5-webui-beta", + "This script is deprecated. Please use the full Deforum extension instead.": "Este script está desatualizado. Favor usar a extensão Deforum completa.", + "Update instructions:": "Update instructions:", + "github.com/deforum-art/deforum-for-automatic1111-webui/blob/automatic1111-webui/README.md": "github.com/deforum-art/deforum-for-automatic1111-webui/blob/automatic1111-webui/README.md", + "discord.gg/deforum": "discord.gg/deforum", "Single Image": "Uma imagem", "Batch Process": "Processo em lote", "Batch from Directory": "Lote apartir de diretório", @@ -205,6 +309,9 @@ "Interpolation Method": "Método de Interpolação", "Weighted sum": "Soma de pesos", "Add difference": "Acrescentar diferença", + "Checkpoint format": "Checkpoint format", + "ckpt": "ckpt", + "safetensors": "safetensors", "Save as float16": "Salvar como float16", "See": "Ver", "wiki": "wiki", @@ -281,6 +388,7 @@ "Embedding": "Incorporação", "Embedding Learning rate": "Taxa de aprendizagem da incorporação", "Hypernetwork Learning rate": "Taxa de aprendizagem de Hypernetwork", + "Gradient accumulation steps": "Passos de acumulação gradiente", "Dataset directory": "Diretório de Dataset", "Log directory": "Diretório de Log", "Prompt template file": "Arquivo padrão de Prompt", @@ -289,68 +397,1146 @@ "Save a copy of embedding to log directory every N steps, 0 to disable": "Salva uma cópia da incorporação no diretório de log a cada N passos. 0 para desativar", "Save images with embedding in PNG chunks": "Salva imagens com incorporação em segmentos de PNG", "Read parameters (prompt, etc...) from txt2img tab when making previews": "Ler parâmetros (prompt, etc...) para a aba txt2img durante os previews", + "Shuffle tags by ',' when creating prompts.": "Embaralhar por ',' quando criando prompts.", + "Drop out tags when creating prompts.": "Descartar rótulos quando criando prompts.", + "Choose latent sampling method": "Escolha o método de amostragem latente", + "once": "uma vez", + "deterministic": "determinístico", + "random": "aleatório", "Train Hypernetwork": "Treinar Hypernetwork", "Train Embedding": "Treinar Incorporação", - "Model": "Modelo", + "Info and links": "Info e links", + "Made by deforum.github.io, port for AUTOMATIC1111's webui maintained by kabachuha": "Feito por deforum.github.io, portabilidade para a interface do AUTOMATIC1111 mantido por kabachuha", + "The code for this extension:": "O código para esta extensão:", + "Fork of deforum for auto1111's webui": "Fork de deforum para interface do auto1111", + "Join the": "Entre no", + "official Deforum Discord": "Discord oficial do Deforum", + "to share your creations and suggestions.": "para compartilhar suas criações e sugestões.", + "For general usage, see the": "Para como usar (em inglês), veja o", + "User guide for Deforum v0.5": "Guia do usuário de Deforum v0.5", + "For advanced animations, see the": "Para animações avançadas, veja", + "Math keyframing explanation": "Explicação matemática para keyframes", + "Alternatively, use": "Como alternativa, use", + "sd-parseq": "sd-parseq", + "as a UI to define your animation schedules (see the Parseq section in the Keyframes tab).": "como a UI para definir sua programação de animação( veja a seção de Parseq na aba de Keyframes.", + "Keyframes": "Keyframes", + "Prompts": "Prompts", + "Init": "Init", + "Video output": "Saída de vídeo", + "Run settings": "Rodar configurações", + "Import settings from file": "Importar configurações de arquivo", + "Override settings": "Sobrescrever configurações", + "Custom settings file": "Arquivo de configurações personalizada", + "Sampling settings": "Configurações de amostragens", + "override_these_with_webui": "sobrescrever_estes_com_a_interface", + "W": "L", + "H": "A", + "seed": "seed", + "sampler": "Amostragem", + "Enable extras": "Ativar extras", + "subseed": "subseed", + "subseed_strength": "força_de_subseed", + "steps": "passos", + "ddim_eta": "ddim_eta", + "n_batch": "lote_n", + "make_grid": "criar_grade", + "grid_rows": "linhas_de_grade", + "save_settings": "salvar_configurações", + "save_samples": "salvar_amostragens", + "display_samples": "visualizar_amostragens", + "save_sample_per_step": "salvar_amostra_por_passo", + "show_sample_per_step": "mostrar_amostra_por_passo", + "Batch settings": "Configurações de lote", + "batch_name": "nome_do_lote", + "filename_format": "formato_de_nome_de_arquivo", + "seed_behavior": "comportamento_de_seed", + "iter": "iter", + "fixed": "fixado", + "schedule": "programação", + "Animation settings": "Configurações de animação", + "animation_mode": "modo_animação", + "2D": "2D", + "3D": "3D", + "Video Input": "entrada de vídeo", + "Interpolation": "Interpolação", + "max_frames": "max_frames", + "border": "borda", + "replicate": "replicar", + "wrap": "wrap", + "Motion parameters:": "Parâmetros de movimento:", + "2D and 3D settings": "Configuração 2D 2 3D", + "angle": "ângulo", + "zoom": "zoom", + "translation_x": "translação_em_x", + "translation_y": "translação_em_y", + "3D settings": "Configurações 3D", + "translation_z": "translação_em_z", + "rotation_3d_x": "rotatação_3d_x", + "rotation_3d_y": "rotação_3d_y", + "rotation_3d_z": "rotação_3d_z", + "Prespective flip — Low VRAM pseudo-3D mode:": "Inversão de perspectiva — modo Low VRAM pseudo-3D:", + "flip_2d_perspective": "inverter_perspectiva_2d", + "perspective_flip_theta": "inverter_perspectiva_theta", + "perspective_flip_phi": "inverter_perspectiva_phi", + "perspective_flip_gamma": "inverter_perspectiva_gamma", + "perspective_flip_fv": "inverter_perspectiva_fv", + "Generation settings:": "Configurações de geração:", + "noise_schedule": "programação_de_ruído", + "strength_schedule": "programação_de_força", + "contrast_schedule": "programação_de_contraste", + "cfg_scale_schedule": "programação_de_escala_cfg", + "3D Fov settings:": "Configurações de Fov 3D:", + "fov_schedule": "programação_de_fov", + "near_schedule": "programação_de_proximidade", + "far_schedule": "programação_de_distância", + "To enable seed schedule select seed behavior — 'schedule'": "Para ativar seed selecione comportamento de seed — 'programação'", + "seed_schedule": "seed_schedule", + "Coherence:": "Coerência:", + "Force all frames to match initial frame's colors. Overrides a1111 settings. NOT RECOMMENDED, enable only for backwards compatibility.": "Forçar todos os frames a combinar com as cores do frame inicial. Sobrescreve as configurações do a1111. NNÃO RECOMENDADO, ativar somente para compatibilidade retroativa.", + "color_coherence": "coerência_de_cor", + "Match Frame 0 HSV": "Combinar Frame 0 HSV", + "Match Frame 0 LAB": "Combinar Frame 0 LAB", + "Match Frame 0 RGB": "Cmbinar Frame 0 RGB", + "diffusion_cadence": "cadência_de_difusão", + "3D Depth Warping:": "Distorção de Profundidade 3D:", + "use_depth_warping": "usar_distorção_de_profundidade", + "midas_weight": "peso_midas", + "near_plane": "plano_de_proximidade", + "far_plane": "plano_de_distância", + "fov": "fov", + "padding_mode": "modo_de_preenchimento", + "reflection": "reflexo", + "zeros": "zeros", + "sampling_mode": "modo_de_amostragem", + "bicubic": "bicubic", + "bilinear": "bilinear", + "nearest": "nearest", + "save_depth_maps": "salvar_mapas_de_profundidade", + "Parseq": "Parseq", + "Use an": "Usa um", + "sd-parseq manifest": "manifesto sd-parseq", + "for your animation (leave blank to ignore).": "para sua animação (deixar vazio para ignorar).", + "Note that parseq overrides:": "Observe que parseq sobrescreve:", + "Run: seed, subseed, subseed strength.": "Executar: seed, subseed, força de subseed.", + "Keyframes: generation settings (noise, strength, contrast, scale).": "Keyframes: configurações de geração (ruído, força, contraste, escala).", + "Keyframes: motion parameters for 2D and 3D (angle, zoom, translation, rotation, perspective flip).": "Keyframes: parâmetros de movimento de 2D e 3D (ângulo, zoom, translação, rotação, inverter perspectiva).", + "Parseq does": "Parseq faz", + "not": "não", + "override:": "sobrescreve:", + "Run: Sampler, W, H, Restore faces, tiling, highres fix, resize seed.": "Executar: Amostragem, L, A, Restaurar rostos, ladrilho, ajuste de alta resolução, redimensionar seed.", + "Keyframes: animation settings (animation mode, max_frames, border)": "Keyframes: configuração de animação (modo de animação, max_frames, borda)", + "Keyframes: coherence (color coherence & diffusion cadence)": "Keyframes: coerência (coerência de cor & cadência de difusão)", + "Keyframes: depth warping": "Keyframes: distorção de profundidade", + "Video output settings: all settings (including fps and max frames)": "Configuração de saída de vídeo: todas as configurações (incluindo fps e frames máximos)", + "parseq_manifest": "manifesto_parseq", + "Use delta values for movement parameters": "Usar valores delta para parâmetros de movimento", + "`animation_mode: None` batches on list of *prompts*. (Batch mode disabled atm, only animation_prompts are working)": "`modo_animação: Nenhum` lotes na lista de *prompts*. (Modo de lote desativado no momento atm, apenas promtps_de_animação estão funcionando)", + "*Important change from vanilla Deforum!*": "*Mudança importante do Deforum básico!*", + "This script uses the built-in webui weighting settings.": "Este script usa as configurações prontas de peso da interface.", + "So if you want to use math functions as prompt weights,": "Então se você quiser usar funções matemáticas nas duas partes", + "keep the values above zero in both parts": "mantenha os valores acima de zero nas duas partes", + "Negative prompt part can be specified with --neg": "Parte do prompt negativo pode ser especificado com --neg", + "batch_prompts (disabled atm)": "prompts_de_lote (desativado no momento)", + "animation_prompts": "animação_de_prompts", + "Init settings": "Configurações Init", + "use_init": "usar_init", + "from_img2img_instead_of_link": "de_img2img_ao_invés_de_linl", + "strength_0_no_init": "força_0_sem_init", + "strength": "força", + "init_image": "imagem_init", + "use_mask": "usar_máscara", + "use_alpha_as_mask": "usar_alpha_como_máscara", + "invert_mask": "inverter_máscara", + "overlay_mask": "sobrepor_máscara", + "mask_file": "arquivo_de_máscara", + "mask_contrast_adjust": "ajuste_do_contraste_da_máscara", + "mask_brightness_adjust": "ajuste_do_brilho_da_máscara", + "mask_overlay_blur": "sobreposição_do_desfoque_da_máscara", + "mask_fill": "preenchimento_da_máscara", + "full_res_mask": "máscara_em_alta_resolução", + "full_res_mask_padding": "preenchimento_da_máscara_em_alta_resolução", + "Video Input:": "Entrada de video:", + "video_init_path": "caminho_de_vídeo_init", + "extract_nth_frame": "extract_nth_frame", + "overwrite_extracted_frames": "sobrescrever_frames_extraídos", + "use_mask_video": "usar_máscara_de_vídeo", + "video_mask_path": "caminho_da_máscara_de_vídeo", + "Interpolation (turned off atm)": "Interpolação (desligado no momento)", + "interpolate_key_frames": "interpolar_key_frames", + "interpolate_x_frames": "interpolar_x_frames", + "Resume animation:": "Continuar animação:", + "resume_from_timestring": "continuar_do_timestring", + "resume_timestring": "continuar_timestring", + "Video output settings": "Configurações de saída de vídeo", + "skip_video_for_run_all": "pular_vídeo_para_executar_todos", + "fps": "fps", + "output_format": "formato_de_saída", + "PIL gif": "PIL gif", + "FFMPEG mp4": "FFMPEG mp4", + "ffmpeg_location": "Local_do_ffmpeg", + "add_soundtrack": "adicionar_trilha_sonora", + "soundtrack_path": "caminho_da_trilha_sonora", + "use_manual_settings": "usar_configurações_manuais", + "render_steps": "renderizar_passos", + "max_video_frames": "frames_máximos_de_vídeo", + "path_name_modifier": "caminho_de_modificador_de_nome", + "x0_pred": "x0_pred", + "x": "x", + "image_path": "caminho_da_imagem", + "mp4_path": "caminho_do_mp4", + "Click here after the generation to show the video": "Clique aqui depois de gerar para visualizar o vídeo", + "Close the video": "Close the video", + "NOTE: If the 'Generate' button doesn't work, go in Settings and click 'Restart Gradio and Refresh...'.": "NOTA: se o botão 'Gerar' não funcionar, vá para Configurações e clique em 'Reiniciar Gradio e atualizar...'.", + "Save Settings": "Salvar configurações", + "Load Settings": "Carregar configurações", + "Path relative to the webui folder": "Caminho referente à pasta da interface", + "Save Video Settings": "Salvar configurações de Víde", + "Load Video Settings": "Carregar configurações de Vídeo", + "Manage wildcards for Dynamic Prompts": "Administrar coringas para Prompts Dinâmicos", + "1. Create your wildcard library by copying a collection using the dropdown below.": "1. Criar sua biblioteca coringa copiando a coleção usando o menu abaixo.", + "2. Click on any of the files that appear in the tree to edit them.": "2. Clique em qualquer um dos arquivos que aparecem na árvore para editá-los.", + "3. Use the wildcard in your script by typing the name of the file or copying the text from the Wildcards file text box": "3. Usar um coringa no seu script digitando o nome do arquivo ou copiando o texto da caixa de texto do arquivo de Coringas", + "4. Optional - add your own wildcards files to the \\file_path.": "4. Opcional - adicionar seus próprios arquivos de coringa para o \\file_path.", + "Select a collection": "Selecione a coleção", + "jumbo": "jumbo", + "parrotzone": "parrotzone", + "Copy collection": "Copiar coleção", + "Overwrite existing": "Sobrescrever existente", + "Refresh wildcards": "Reiniciar coringas", + "Delect all wildcards": "Deletar todos os coringas", + "Wildcards file": "Arquivo coringa", + "File editor": "Editor de arquivos", + "Save wildcards": "Salvar coringas", + "Action": "Ação", + "Save Params": "Salvar Parâmetros", + "Load Params": "Carregar Parâmetros", + "Generate Ckpt": "Gerar Ckpt", "Cancel": "Cancelar", + "Lora Model": "Modelo Lora", + "Custom Model Name": "Nome de Modelo Personalizado", + "Lora Weight": "Peso de Lora", + "Lora Text Weight": "Peso do Texto de Lora", + "Half Model": "Meio Modelo", + "Save Checkpoint to Subdirectory": "Saalvar Checkpoint no Subdiretório", + "Training Wizard (Person)": "Treinamento Mágico (Person)", + "Training Wizard (Object/Style)": "Treinamento Mágico (Object/Style)", + "Performance Wizard (WIP)": "Performance Mágica (WIP)", + "Loaded Model:": "Modelo Carregado:", + "Model Revision:": "Modelo Revisado:", + "V2 Model:": "Modelo V2:", + "Has EMA:": "Tem EMA:", + "Source Checkpoint:": "Checkpoint Original:", + "Scheduler:": "Scheduler:", "Create Model": "Criar Modelo", - "Train Model": "Treinar Modelo", - "Source Checkpoint": "Checkpoint original", - "model.ckpt [7460a6fa]": "model.ckpt [7460a6fa]", - "sd-v1-5-inpainting.ckpt [3e16efc8]": "sd-v1-5-inpainting.ckpt [3e16efc8]", - "v1-5-pruned-emaonly.ckpt [81761151]": "v1-5-pruned-emaonly.ckpt [81761151]", - "v1-5-pruned.ckpt [a9263745]": "v1-5-pruned.ckpt [a9263745]", + "Parameters": "Parâmetros", + "Concepts": "Conceitos", + "Debugging": "Depurando", + "Import Model from Huggingface Hub": "Importar Modelo do Hub do Huggingface", + "Model Path": "Caminho do Modelo", + "HuggingFace Token": "Token do HuggingFace", + "Source Checkpoint": "Checkpoint original", + "Extract EMA Weights": "Extrair Pesos EMA", "Scheduler": "Planejador", "pndm": "pndm", - "ddim": "ddim", "lms": "lms", + "euler": "euler", + "euler-ancestral": "euler-ancestral", + "dpm": "dpm", + "ddim": "ddim", "Create": "Criar", - "▼": "▼", - "Concepts List (Overrides instance/class settings below)": "Listras de Conceito (Sobrescreve as configurações de instâncias/classesabaixo)", - "Instance prompt": "Prompt de instância", - "Class prompt": "Prompt de classe", - "Classification dataset directory (optional).": "Diretório para conjunto de dados de classificação (opcional).", - "Total number of classification images to use. Set to 0 to disable.": "Número total de imagens para classificação. Marcar como 0 para desativar.", - "Training steps": "Passos de treinamento", + "Intervals": "Intervalos", + "Training Steps Per Image (Epochs)": "Passos de Treinamento Por Imagem (Épocas)", + "Max Training Steps": "Máximo de Passos de Treinamento", + "Pause After N Epochs": "Pausar Após N Épocas", + "Amount of time to pause between Epochs, in Seconds": "Quantidade de tempo para pausar entre Épocas, em segundos", + "Use Lifetime Steps/Epochs When Saving": "Usar Passos/Épocas de Vida Toda Quando Salvar", + "Save Preview/Ckpt Every Epoch": "Saalvar Preview/Ckpt Todas as Épocas", + "Save Checkpoint Frequency": "Salvar Frequência de Checkpoint", + "Save Preview(s) Frequency": "Save Pré-visualização(ões) Frequency", + "Batch": "Lote", "Batch Size": "Tamanho do Lote", "Class Batch Size": "Tamanho da Classe do Lote", - "Learning rate": "Taxa de aprendizagem", - "Resolution": "Resolução", - "Save a checkpoint every N steps, 0 to disable": "Salvar um checkpoint a cada N passos, 0 para desativar", - "Generate a preview image every N steps, 0 to disable": "Gerar uma prévia de imagem a cada N passos, 0 para desativar", - "Preview image prompt": "Prompt para prévia de imagem", - "Preview image negative prompt": "Prompt negativo para prévia de imagem", - "Number of samples to generate": "Número de amostragens para gerar", - "Sample guidance scale": "Escala de guiade amostragem", - "Sample steps": "Passos de amostragem", - "Advanced": "Avançado", - "Use CPU Only (SLOW)": "UsaR somente a CPU(LENTO)", - "Don't cache latents": "Não armazenar latentes no cache ", - "Train Text Encoder": "Treinar Codificador de Texto", - "Use 8bit Adam": "Usa 8bit Adam", - "Center Crop": "Cortar Centralizado", - "Gradient Checkpointing": "Checkpoint em Gradiente ", + "Learning Rate": "Taxa de Aprendizado", + "Lora unet Learning Rate": "Taxa de Aprendizado Lora unet", + "Lora Text Encoder Learning Rate": "Codificador de texto para Taxa de Aprendizado Lorat", "Scale Learning Rate": "Escala da Taxa de Aprendizagem", + "Learning Rate Scheduler": "Programa de Taxa de Aprendizado", + "cosine": "cosseno", + "cosine_with_restarts": "cosseno_com_reinicializações", + "polynomial": "polinomial", + "constant": "constante", + "constant_with_warmup": "constante_com_pré-aquecimento", + "Learning Rate Warmup Steps": "Passos de Pré-aquecimento da Taxa de Aprendizado", + "Image Processing": "Processamento de Imagem", + "Resolution": "Resolução", + "Center Crop": "Cortar Centralizado", + "Apply Horizontal Flip": "Aplicar Inversão Horizontal", + "Save Class Captions to txt": "Saalvar Legenda de Classe para txt", + "Miscellaneous": "Diversos", + "Pretrained VAE Name or Path": "Nome do VAE Pré-treinado ou caminho", + "Use Concepts List": "Usar Lista de Conceitos", + "Concepts List": "Lista de Conceitos", + "Advanced": "Avançado", + "Tuning": "Afinação", + "Use CPU Only (SLOW)": "Usar somente a CPU(LENTO)", + "Use LORA": "Usar LORA", + "Use EMA": "Usar EMA", + "Use 8bit Adam": "Usar 8bit Adam", "Mixed Precision": "Precisão Mesclada", "no": "não", "fp16": "fp16", "bf16": "bf16", - "cosine": "cosseno", - "cosine_with_restarts": "cossene_com_reinicializações", - "polynomial": "polinomial", - "constant": "constante", - "constant_with_warmup": "constante_com_pré-aquecimento", + "Memory Attention": "Atenção da Memória", + "default": "padrão", + "xformers": "xformers", + "flash_attention": "atenção_flash", + "Don't Cache Latents": "Não armazenar Latents no Cache", + "Train Text Encoder": "Treinar Codificador de Texto", "Prior Loss Weight": "Peso da Perda Anterior", - "# Training Epochs": "# Treinando Épocas", + "Pad Tokens": "Preencher Tokens", + "Shuffle Tags": "embaralhar Rótulos", + "Max Token Length": "Quantidade Máxima de Tokens", + "Gradients": "Gradients", + "Gradient Checkpointing": "Checkpoint em Gradiente ", + "Gradient Accumulation Steps": "Passos de Acumulação em Gradiente", + "Adam Advanced": "Adam Advanced", "Adam Beta 1": "Adam Beta 1", "Adam Beta 2": "Adam Beta 2", "Adam Weight Decay": "Decaimento do Peso Adam", "Adam Epsilon": "Adam Epsilon", - "Max Grad Norms": "Max Grad Norms", - "Grad Accumulation Steps": "Passos de Acumulação Grad", - "Warmup Steps": "Passos de Pré-aquecimento", - "Pad Tokens": "Pad Tokens", - "Apply horizontal Flip": "Aplicar Espelhamento horizontal", + "Concept 1": "Conceito 1", + "Concept 2": "Conceito 2", + "Concept 3": "Conceito 3", + "Maximum Training Steps": "Passos Máximos de Treinamento", + "Directories": "Directórios", + "Dataset Directory": "Directório do Conjunto de Dados", + "Classification Dataset Directory": "Classificação do Conjunto de Dados", + "Filewords": "Nomes de arquivos", + "Instance Token": "Token de Instância", + "Class Token": "Token de Classe", + "Instance Prompt": "Prompt de Instância", + "Class Prompt": "Prompt de CLasse", + "Classification Image Negative Prompt": "Classificação de Prompt Negativo de Imagem", + "Sample Image Prompt": "Prompt de Amostra de Imagem", + "Sample Prompt Template File": "Arquivo Base de Prompt de Amostra", + "Sample Image Negative Prompt": "Prompt Negativo de Amostra de Imagem", + "Image Generation": "Geração de Imagem", + "Total Number of Class/Reg Images": "Número Total de Imagens de Classe/Reg", + "Classification CFG Scale": "Classificação de Escala CFG", + "Classification Steps": "Passos de Classificação", + "Number of Samples to Generate": "Número de Amostras para Gerar", + "Sample Seed": "Seed de Amostra", + "Sample CFG Scale": "Escala CFG de Amostra", + "Sample Steps": "Passos de Amostra", + "Preview Prompts": "Pré-visualizar Prompts", + "Generate Sample Image": "Gerar Imagem de Amostra", + "Sample Prompt": "Prompt de Amostra", + "Log Memory": "Registrar Memória", + "Train Imagic Only": "Treinar Apenas Imagic", + "Vector": "Vetor", + "Refresh Embeddings": "Reiniciar Incorporações", + "Save Embedding": "Salvar Incorporações", + "Enter words and color hexes to mark weights on the sliders for guidance. Hint: Use the txt2img prompt token counter or": "Digitar palavras e cores hexadecimais para marcar pesos nas barras de guia. Dica: usar o contador de tokens de prompt txt2img ou", + "webui-tokenizer": "webui-tokenizer", + "to see which words are constructed using multiple sub-words, e.g. 'computer' doesn't exist in stable diffusion's CLIP dictionary and instead 'compu' and 'ter' are used (1 word but 2 embedding vectors). Currently buggy and needs a moment to process before pressing the button. If it doesn't work after a moment, try adding a random space to refresh it.": "para ver quais palavras são construídas usando múltiplas sub-palavras. Ex: 'computer' não existe no dicionário CLIP do stable diffusion, então 'compu' e 'ter' serão usados 91 palavra mas 2 vetores de incorporação). Está bugado no momento e precisa de tempo para processar antes de apertar o botão. Se não funcionar depois de um tempo, tente adicionar um espaço aleatório para reiniciar.", + "[object Object]": "[object Object]", + "w0": "w0", + "w1": "w1", + "w2": "w2", + "w3": "w3", + "w4": "w4", + "w5": "w5", + "w6": "w6", + "w7": "w7", + "w8": "w8", + "w9": "w9", + "w10": "w10", + "w11": "w11", + "w12": "w12", + "w13": "w13", + "w14": "w14", + "w15": "w15", + "w16": "w16", + "w17": "w17", + "w18": "w18", + "w19": "w19", + "w20": "w20", + "w21": "w21", + "w22": "w22", + "w23": "w23", + "w24": "w24", + "w25": "w25", + "w26": "w26", + "w27": "w27", + "w28": "w28", + "w29": "w29", + "w30": "w30", + "w31": "w31", + "w32": "w32", + "w33": "w33", + "w34": "w34", + "w35": "w35", + "w36": "w36", + "w37": "w37", + "w38": "w38", + "w39": "w39", + "w40": "w40", + "w41": "w41", + "w42": "w42", + "w43": "w43", + "w44": "w44", + "w45": "w45", + "w46": "w46", + "w47": "w47", + "w48": "w48", + "w49": "w49", + "w50": "w50", + "w51": "w51", + "w52": "w52", + "w53": "w53", + "w54": "w54", + "w55": "w55", + "w56": "w56", + "w57": "w57", + "w58": "w58", + "w59": "w59", + "w60": "w60", + "w61": "w61", + "w62": "w62", + "w63": "w63", + "w64": "w64", + "w65": "w65", + "w66": "w66", + "w67": "w67", + "w68": "w68", + "w69": "w69", + "w70": "w70", + "w71": "w71", + "w72": "w72", + "w73": "w73", + "w74": "w74", + "w75": "w75", + "w76": "w76", + "w77": "w77", + "w78": "w78", + "w79": "w79", + "w80": "w80", + "w81": "w81", + "w82": "w82", + "w83": "w83", + "w84": "w84", + "w85": "w85", + "w86": "w86", + "w87": "w87", + "w88": "w88", + "w89": "w89", + "w90": "w90", + "w91": "w91", + "w92": "w92", + "w93": "w93", + "w94": "w94", + "w95": "w95", + "w96": "w96", + "w97": "w97", + "w98": "w98", + "w99": "w99", + "w100": "w100", + "w101": "w101", + "w102": "w102", + "w103": "w103", + "w104": "w104", + "w105": "w105", + "w106": "w106", + "w107": "w107", + "w108": "w108", + "w109": "w109", + "w110": "w110", + "w111": "w111", + "w112": "w112", + "w113": "w113", + "w114": "w114", + "w115": "w115", + "w116": "w116", + "w117": "w117", + "w118": "w118", + "w119": "w119", + "w120": "w120", + "w121": "w121", + "w122": "w122", + "w123": "w123", + "w124": "w124", + "w125": "w125", + "w126": "w126", + "w127": "w127", + "w128": "w128", + "w129": "w129", + "w130": "w130", + "w131": "w131", + "w132": "w132", + "w133": "w133", + "w134": "w134", + "w135": "w135", + "w136": "w136", + "w137": "w137", + "w138": "w138", + "w139": "w139", + "w140": "w140", + "w141": "w141", + "w142": "w142", + "w143": "w143", + "w144": "w144", + "w145": "w145", + "w146": "w146", + "w147": "w147", + "w148": "w148", + "w149": "w149", + "w150": "w150", + "w151": "w151", + "w152": "w152", + "w153": "w153", + "w154": "w154", + "w155": "w155", + "w156": "w156", + "w157": "w157", + "w158": "w158", + "w159": "w159", + "w160": "w160", + "w161": "w161", + "w162": "w162", + "w163": "w163", + "w164": "w164", + "w165": "w165", + "w166": "w166", + "w167": "w167", + "w168": "w168", + "w169": "w169", + "w170": "w170", + "w171": "w171", + "w172": "w172", + "w173": "w173", + "w174": "w174", + "w175": "w175", + "w176": "w176", + "w177": "w177", + "w178": "w178", + "w179": "w179", + "w180": "w180", + "w181": "w181", + "w182": "w182", + "w183": "w183", + "w184": "w184", + "w185": "w185", + "w186": "w186", + "w187": "w187", + "w188": "w188", + "w189": "w189", + "w190": "w190", + "w191": "w191", + "w192": "w192", + "w193": "w193", + "w194": "w194", + "w195": "w195", + "w196": "w196", + "w197": "w197", + "w198": "w198", + "w199": "w199", + "w200": "w200", + "w201": "w201", + "w202": "w202", + "w203": "w203", + "w204": "w204", + "w205": "w205", + "w206": "w206", + "w207": "w207", + "w208": "w208", + "w209": "w209", + "w210": "w210", + "w211": "w211", + "w212": "w212", + "w213": "w213", + "w214": "w214", + "w215": "w215", + "w216": "w216", + "w217": "w217", + "w218": "w218", + "w219": "w219", + "w220": "w220", + "w221": "w221", + "w222": "w222", + "w223": "w223", + "w224": "w224", + "w225": "w225", + "w226": "w226", + "w227": "w227", + "w228": "w228", + "w229": "w229", + "w230": "w230", + "w231": "w231", + "w232": "w232", + "w233": "w233", + "w234": "w234", + "w235": "w235", + "w236": "w236", + "w237": "w237", + "w238": "w238", + "w239": "w239", + "w240": "w240", + "w241": "w241", + "w242": "w242", + "w243": "w243", + "w244": "w244", + "w245": "w245", + "w246": "w246", + "w247": "w247", + "w248": "w248", + "w249": "w249", + "w250": "w250", + "w251": "w251", + "w252": "w252", + "w253": "w253", + "w254": "w254", + "w255": "w255", + "w256": "w256", + "w257": "w257", + "w258": "w258", + "w259": "w259", + "w260": "w260", + "w261": "w261", + "w262": "w262", + "w263": "w263", + "w264": "w264", + "w265": "w265", + "w266": "w266", + "w267": "w267", + "w268": "w268", + "w269": "w269", + "w270": "w270", + "w271": "w271", + "w272": "w272", + "w273": "w273", + "w274": "w274", + "w275": "w275", + "w276": "w276", + "w277": "w277", + "w278": "w278", + "w279": "w279", + "w280": "w280", + "w281": "w281", + "w282": "w282", + "w283": "w283", + "w284": "w284", + "w285": "w285", + "w286": "w286", + "w287": "w287", + "w288": "w288", + "w289": "w289", + "w290": "w290", + "w291": "w291", + "w292": "w292", + "w293": "w293", + "w294": "w294", + "w295": "w295", + "w296": "w296", + "w297": "w297", + "w298": "w298", + "w299": "w299", + "w300": "w300", + "w301": "w301", + "w302": "w302", + "w303": "w303", + "w304": "w304", + "w305": "w305", + "w306": "w306", + "w307": "w307", + "w308": "w308", + "w309": "w309", + "w310": "w310", + "w311": "w311", + "w312": "w312", + "w313": "w313", + "w314": "w314", + "w315": "w315", + "w316": "w316", + "w317": "w317", + "w318": "w318", + "w319": "w319", + "w320": "w320", + "w321": "w321", + "w322": "w322", + "w323": "w323", + "w324": "w324", + "w325": "w325", + "w326": "w326", + "w327": "w327", + "w328": "w328", + "w329": "w329", + "w330": "w330", + "w331": "w331", + "w332": "w332", + "w333": "w333", + "w334": "w334", + "w335": "w335", + "w336": "w336", + "w337": "w337", + "w338": "w338", + "w339": "w339", + "w340": "w340", + "w341": "w341", + "w342": "w342", + "w343": "w343", + "w344": "w344", + "w345": "w345", + "w346": "w346", + "w347": "w347", + "w348": "w348", + "w349": "w349", + "w350": "w350", + "w351": "w351", + "w352": "w352", + "w353": "w353", + "w354": "w354", + "w355": "w355", + "w356": "w356", + "w357": "w357", + "w358": "w358", + "w359": "w359", + "w360": "w360", + "w361": "w361", + "w362": "w362", + "w363": "w363", + "w364": "w364", + "w365": "w365", + "w366": "w366", + "w367": "w367", + "w368": "w368", + "w369": "w369", + "w370": "w370", + "w371": "w371", + "w372": "w372", + "w373": "w373", + "w374": "w374", + "w375": "w375", + "w376": "w376", + "w377": "w377", + "w378": "w378", + "w379": "w379", + "w380": "w380", + "w381": "w381", + "w382": "w382", + "w383": "w383", + "w384": "w384", + "w385": "w385", + "w386": "w386", + "w387": "w387", + "w388": "w388", + "w389": "w389", + "w390": "w390", + "w391": "w391", + "w392": "w392", + "w393": "w393", + "w394": "w394", + "w395": "w395", + "w396": "w396", + "w397": "w397", + "w398": "w398", + "w399": "w399", + "w400": "w400", + "w401": "w401", + "w402": "w402", + "w403": "w403", + "w404": "w404", + "w405": "w405", + "w406": "w406", + "w407": "w407", + "w408": "w408", + "w409": "w409", + "w410": "w410", + "w411": "w411", + "w412": "w412", + "w413": "w413", + "w414": "w414", + "w415": "w415", + "w416": "w416", + "w417": "w417", + "w418": "w418", + "w419": "w419", + "w420": "w420", + "w421": "w421", + "w422": "w422", + "w423": "w423", + "w424": "w424", + "w425": "w425", + "w426": "w426", + "w427": "w427", + "w428": "w428", + "w429": "w429", + "w430": "w430", + "w431": "w431", + "w432": "w432", + "w433": "w433", + "w434": "w434", + "w435": "w435", + "w436": "w436", + "w437": "w437", + "w438": "w438", + "w439": "w439", + "w440": "w440", + "w441": "w441", + "w442": "w442", + "w443": "w443", + "w444": "w444", + "w445": "w445", + "w446": "w446", + "w447": "w447", + "w448": "w448", + "w449": "w449", + "w450": "w450", + "w451": "w451", + "w452": "w452", + "w453": "w453", + "w454": "w454", + "w455": "w455", + "w456": "w456", + "w457": "w457", + "w458": "w458", + "w459": "w459", + "w460": "w460", + "w461": "w461", + "w462": "w462", + "w463": "w463", + "w464": "w464", + "w465": "w465", + "w466": "w466", + "w467": "w467", + "w468": "w468", + "w469": "w469", + "w470": "w470", + "w471": "w471", + "w472": "w472", + "w473": "w473", + "w474": "w474", + "w475": "w475", + "w476": "w476", + "w477": "w477", + "w478": "w478", + "w479": "w479", + "w480": "w480", + "w481": "w481", + "w482": "w482", + "w483": "w483", + "w484": "w484", + "w485": "w485", + "w486": "w486", + "w487": "w487", + "w488": "w488", + "w489": "w489", + "w490": "w490", + "w491": "w491", + "w492": "w492", + "w493": "w493", + "w494": "w494", + "w495": "w495", + "w496": "w496", + "w497": "w497", + "w498": "w498", + "w499": "w499", + "w500": "w500", + "w501": "w501", + "w502": "w502", + "w503": "w503", + "w504": "w504", + "w505": "w505", + "w506": "w506", + "w507": "w507", + "w508": "w508", + "w509": "w509", + "w510": "w510", + "w511": "w511", + "w512": "w512", + "w513": "w513", + "w514": "w514", + "w515": "w515", + "w516": "w516", + "w517": "w517", + "w518": "w518", + "w519": "w519", + "w520": "w520", + "w521": "w521", + "w522": "w522", + "w523": "w523", + "w524": "w524", + "w525": "w525", + "w526": "w526", + "w527": "w527", + "w528": "w528", + "w529": "w529", + "w530": "w530", + "w531": "w531", + "w532": "w532", + "w533": "w533", + "w534": "w534", + "w535": "w535", + "w536": "w536", + "w537": "w537", + "w538": "w538", + "w539": "w539", + "w540": "w540", + "w541": "w541", + "w542": "w542", + "w543": "w543", + "w544": "w544", + "w545": "w545", + "w546": "w546", + "w547": "w547", + "w548": "w548", + "w549": "w549", + "w550": "w550", + "w551": "w551", + "w552": "w552", + "w553": "w553", + "w554": "w554", + "w555": "w555", + "w556": "w556", + "w557": "w557", + "w558": "w558", + "w559": "w559", + "w560": "w560", + "w561": "w561", + "w562": "w562", + "w563": "w563", + "w564": "w564", + "w565": "w565", + "w566": "w566", + "w567": "w567", + "w568": "w568", + "w569": "w569", + "w570": "w570", + "w571": "w571", + "w572": "w572", + "w573": "w573", + "w574": "w574", + "w575": "w575", + "w576": "w576", + "w577": "w577", + "w578": "w578", + "w579": "w579", + "w580": "w580", + "w581": "w581", + "w582": "w582", + "w583": "w583", + "w584": "w584", + "w585": "w585", + "w586": "w586", + "w587": "w587", + "w588": "w588", + "w589": "w589", + "w590": "w590", + "w591": "w591", + "w592": "w592", + "w593": "w593", + "w594": "w594", + "w595": "w595", + "w596": "w596", + "w597": "w597", + "w598": "w598", + "w599": "w599", + "w600": "w600", + "w601": "w601", + "w602": "w602", + "w603": "w603", + "w604": "w604", + "w605": "w605", + "w606": "w606", + "w607": "w607", + "w608": "w608", + "w609": "w609", + "w610": "w610", + "w611": "w611", + "w612": "w612", + "w613": "w613", + "w614": "w614", + "w615": "w615", + "w616": "w616", + "w617": "w617", + "w618": "w618", + "w619": "w619", + "w620": "w620", + "w621": "w621", + "w622": "w622", + "w623": "w623", + "w624": "w624", + "w625": "w625", + "w626": "w626", + "w627": "w627", + "w628": "w628", + "w629": "w629", + "w630": "w630", + "w631": "w631", + "w632": "w632", + "w633": "w633", + "w634": "w634", + "w635": "w635", + "w636": "w636", + "w637": "w637", + "w638": "w638", + "w639": "w639", + "w640": "w640", + "w641": "w641", + "w642": "w642", + "w643": "w643", + "w644": "w644", + "w645": "w645", + "w646": "w646", + "w647": "w647", + "w648": "w648", + "w649": "w649", + "w650": "w650", + "w651": "w651", + "w652": "w652", + "w653": "w653", + "w654": "w654", + "w655": "w655", + "w656": "w656", + "w657": "w657", + "w658": "w658", + "w659": "w659", + "w660": "w660", + "w661": "w661", + "w662": "w662", + "w663": "w663", + "w664": "w664", + "w665": "w665", + "w666": "w666", + "w667": "w667", + "w668": "w668", + "w669": "w669", + "w670": "w670", + "w671": "w671", + "w672": "w672", + "w673": "w673", + "w674": "w674", + "w675": "w675", + "w676": "w676", + "w677": "w677", + "w678": "w678", + "w679": "w679", + "w680": "w680", + "w681": "w681", + "w682": "w682", + "w683": "w683", + "w684": "w684", + "w685": "w685", + "w686": "w686", + "w687": "w687", + "w688": "w688", + "w689": "w689", + "w690": "w690", + "w691": "w691", + "w692": "w692", + "w693": "w693", + "w694": "w694", + "w695": "w695", + "w696": "w696", + "w697": "w697", + "w698": "w698", + "w699": "w699", + "w700": "w700", + "w701": "w701", + "w702": "w702", + "w703": "w703", + "w704": "w704", + "w705": "w705", + "w706": "w706", + "w707": "w707", + "w708": "w708", + "w709": "w709", + "w710": "w710", + "w711": "w711", + "w712": "w712", + "w713": "w713", + "w714": "w714", + "w715": "w715", + "w716": "w716", + "w717": "w717", + "w718": "w718", + "w719": "w719", + "w720": "w720", + "w721": "w721", + "w722": "w722", + "w723": "w723", + "w724": "w724", + "w725": "w725", + "w726": "w726", + "w727": "w727", + "w728": "w728", + "w729": "w729", + "w730": "w730", + "w731": "w731", + "w732": "w732", + "w733": "w733", + "w734": "w734", + "w735": "w735", + "w736": "w736", + "w737": "w737", + "w738": "w738", + "w739": "w739", + "w740": "w740", + "w741": "w741", + "w742": "w742", + "w743": "w743", + "w744": "w744", + "w745": "w745", + "w746": "w746", + "w747": "w747", + "w748": "w748", + "w749": "w749", + "w750": "w750", + "w751": "w751", + "w752": "w752", + "w753": "w753", + "w754": "w754", + "w755": "w755", + "w756": "w756", + "w757": "w757", + "w758": "w758", + "w759": "w759", + "w760": "w760", + "w761": "w761", + "w762": "w762", + "w763": "w763", + "w764": "w764", + "w765": "w765", + "w766": "w766", + "w767": "w767", + "Generate Preview": "Generate Preview", + "Video to extract frames from:": "Video to extract frames from:", + "Only extract keyframes (recommended)": "Only extract keyframes (recommended)", + "Extract every nth frame": "Extract every nth frame", + "Extract Frames": "Extract Frames", + "Extracted Frame Set": "Extracted Frame Set", + "Resize crops to 512x512": "Resize crops to 512x512", + "Outfill method:": "Outfill method:", + "Don't outfill": "Don't outfill", + "Stretch image": "Stretch image", + "Transparent": "Transparent", + "Solid color": "Solid color", + "Average image color": "Average image color", + "Dominant image color": "Dominant image color", + "Stretch pixels at border": "Stretch pixels at border", + "Reflect image around border": "Reflect image around border", + "Blurred & stretched overlay": "Blurred & stretched overlay", + "Reuse original image": "Reuse original image", + "Reset Aspect Ratio": "Reset Aspect Ratio", + "Bulk process frames with chosen outfill method": "Bulk process frames with chosen outfill method", + "Image border outfill method:": "Image border outfill method:", + "Black outfill": "Black outfill", + "Outfill border color:": "Outfill border color:", + "Blur amount:": "Blur amount:", + "Number of clusters:": "Number of clusters:", + "Save crops to:": "Save crops to:", + "<": "<", + "Number": "Number", + ">": ">", "Apply settings": "Aplicar configurações", "Saving images/grids": "Salvar imagens/grades", "Always save all generated images": "Sempre salvar todas as imagens geradas", @@ -373,6 +1559,8 @@ "Use original name for output filename during batch process in extras tab": "Usar o nome original para os arquivos de output durante o processo de levas da aba Extras", "When using 'Save' button, only save a single selected image": "Quando usar o botão `Salvar`, somente salvar as imagens selecionadas.", "Do not add watermark to images": "Não adicionar marca dágua nas imagens", + "Directory for temporary images; leave empty for default": "Directório para imagens temporárias; deixar em branco para padrão", + "Cleanup non-default temporary directory when starting webui": "Limpar diretório temporário não-padrão quando inciar a interface", "Paths for saving": "Caminhos para salvar", "Output directory for images; if empty, defaults to three directories below": "Diretório de saída para imagens; se deixado em branco, as imagens vao para os seguintes diretórios", "Output directory for txt2img images": "Diretório de Saída para imagens txt2img", @@ -391,11 +1579,12 @@ "Upscaling": "Ampliando", "Tile size for ESRGAN upscalers. 0 = no tiling.": "Tamanho do ladrilho para ampliação ESRGAN. 0 = sem ladrilho.", "Tile overlap, in pixels for ESRGAN upscalers. Low values = visible seam.": "Sobreposição de azulejo, em pixels, para amplicação ESRGAN. Valores baixos = linhas de fusão mais aparente.", - "Tile size for all SwinIR.": "Tamanho do ladrilho para todo SwinIR.", - "Tile overlap, in pixels for SwinIR. Low values = visible seam.": "Sobreposição de azulejo, em pixels, para SwinIR. Valores baixos = junção mais aparente.", - "LDSR processing steps. Lower = faster": "Steps de processamento LDSR. Menos = rápido", "Upscaler for img2img": "Ampliação para img2img", "Upscale latent space image when doing hires. fix": "Ampliar a imagem do espaço latente quando usando o ajuste de alta definição - hires. fix", + "LDSR processing steps. Lower = faster": "Passos de processamento LDSR. Menos = rápido", + "Cache LDSR model in memory": "Cache de modelo LDSR na memory", + "Tile size for all SwinIR.": "Tamanho do ladrilho para todo SwinIR.", + "Tile overlap, in pixels for SwinIR. Low values = visible seam.": "Sobreposição de azulejo, em pixels, para SwinIR. Valores baixos = junção mais aparente.", "Face restoration": "Refinamento de rosto", "CodeFormer weight parameter; 0 = maximum effect; 1 = minimum effect": "Parâmento de peso do CodeFormer; 0 = efeito máximo; 1 = efeito mínimo", "Move face restoration model from VRAM into RAM after processing": "Mover o processo de refinamento de rosto da VRAM da placa de vídeo para a RAM do computador depois do processamento.", @@ -405,6 +1594,7 @@ "Add a second progress bar to the console that shows progress for an entire job.": "Adicionar uma segunda barra de processamento no console que mostra a progressão de todo o trabalho.", "Training": "Treinamento", "Move VAE and CLIP to RAM when training if possible. Saves VRAM.": "Mover VAR e CLIP para a RAM durante treinamento quando possível. Preserva RAM", + "Turn on pin_memory for DataLoader. Makes training slightly faster but can increase memory usage.": "Ativar pin_memory para Dataloader. Deixa o treinamento um pouco mais rápido mas pode aumentar o uso da memória.", "Saves Optimizer state as separate *.optim file. Training can be resumed with HN itself and matching optim file.": "Salvar o estado de Otimizador como um arquivo separado *.optim. O treinamento pode continuar com HN em si mesmo e combinando com o arquivo optim.", "Filename word regex": "Palavra de nome de arquivo regex", "Filename join string": "Nome de arquivo join string", @@ -415,8 +1605,10 @@ "Checkpoints to cache in RAM": "Checkpoints para armazenar no cache da RAM", "SD VAE": "SD VAE", "auto": "auto", + "Ignore selected VAE for stable diffusion checkpoints that have their own .vae.pt next to them": "Ignora os VAE elecionados para checkpoints de stable diffusion que tenha seu prórios .vae.pt no mesmo local", "Hypernetwork strength": "Força da Hypernetwork", "Inpainting conditioning mask strength": "Força do inpaint para máscaras condicioniais", + "Noise multiplier for img2img": "Multiplicador de ruído para img2img", "Apply color correction to img2img results to match original colors.": "Aplicar correção de cor nas imagens geradas em img2img, usando a imagem original como base.", "With img2img, do exactly the amount of steps the slider specifies (normally you'd do less with less denoising).": "Durante gerações img2img, fazer examente o número de steps definidos na barra (normalmente você faz menos steps com denoising menor).", "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply.": "Ativar quantização em K samples para resultados mais nítidos e visíveis. Pode alterar seeds ja existentes. Precisa reiniciar para funcionar.", @@ -424,8 +1616,6 @@ "Use old emphasis implementation. Can be useful to reproduce old seeds.": "Usar método anterior de implementação de ênfase. Útil para reproduzir seeds antigas.", "Make K-diffusion samplers produce same images in a batch as when making a single image": "Faz as amostragens K-diffusion produzirem imagens iguais em lotes quando criando uma única imagem", "Increase coherency by padding from the last comma within n tokens when using more than 75 tokens": "Aumenta a coerência por preenchimento apartir da ultima vírgula dentro de n tokens quando usando mais de 75 tokens", - "Filter NSFW content": "Filtra conteúdos inadequados(geralmente +18)", - "Stop At last layers of CLIP model": "Para na última camada do modelo CLIP", "Interrogate Options": "Opções de Interrogatório", "Interrogate: keep models in VRAM": "Interrogar: manter modelos na VRAM", "Interrogate: use artists from artists.csv": "Interrogar: usa artistas e estilos do documento artists.csv", @@ -448,12 +1638,14 @@ "Add model name to generation information": "Adicionar nome do modelo para informação de geração", "When reading generation parameters from text into UI (from PNG info or pasted text), do not change the selected model/checkpoint.": "Quando ler parâmetros de texto para a interface (de informações de PNG ou texto copiado), não alterar o modelo/intervalo selecionado.", "Send seed when sending prompt or image to other interface": "Enviar seed quando enviar prompt ou imagem para outra interface", + "Send size when sending prompt or image to another interface": "Enviar tamanho quando enviar prompt ou imagem para outra interface", "Font for image grids that have text": "Fonte para grade de imagens que têm texto", "Enable full page image viewer": "Ativar visualizador de página inteira", "Show images zoomed in by default in full page image viewer": "Mostrar imagens com zoom por definição no visualizador de página inteira", "Show generation progress in window title.": "Mostrar barra de progresso no nome da janela.", "Quicksettings list": "Lista de configurações rapidas", "Localization (requires restart)": "Localização (precisa reiniciar)", + "it_IT": "it_IT", "pt_BR": "pt_BR", "Sampler parameters": "Parâmetros de Amostragem", "Hide samplers in user interface (requires restart)": "Esconder amostragens na interface de usuário (precisa reiniciar)", @@ -466,6 +1658,12 @@ "sigma tmin": "sigma tmin", "sigma noise": "sigma noise", "Eta noise seed delta": "tempo estimado para ruído seed delta", + "Depthmap extension": "Extensão de Mapa de Profundidade", + "Maximum wholesize for boost.": "Tamanho máximo total para impulsionar.", + "Fixed size to resize images to": "Tamanho fixo para redimensionar imagens para", + "Path to read videos from": "Caminho para ler os vídeos de", + "Path to store extracted frame sets in": "Caminho para armazenar conjunto de frames extraídos em", + "Default cropped image output directory": "Diretório de saída padrão para imagens cortadas", "Request browser notifications": "Solicitar notificações do navegador", "Download localization template": "Baixar arquivo modelo de localização", "Reload custom script bodies (No ui updates, No restart)": "Recarregar scripts personalizados (Sem atualizar a interface, Sem reiniciar)", @@ -478,81 +1676,73 @@ "Extension": "Extensão", "URL": "URL", "Update": "Atualização", + "deforum-for-automatic1111-webui": "deforum-for-automatic1111-webui", + "https://github.com/deforum-art/deforum-for-automatic1111-webui": "https://github.com/deforum-art/deforum-for-automatic1111-webui", + "unknown": "desconhecido", + "novelai-2-local-prompt": "novelai-2-local-prompt", + "https://github.com/animerl/novelai-2-local-prompt": "https://github.com/animerl/novelai-2-local-prompt", + "sd-dynamic-prompts": "sd-dynamic-prompts", + "https://github.com/adieyal/sd-dynamic-prompts": "https://github.com/adieyal/sd-dynamic-prompts", "sd_dreambooth_extension": "extensão_sd_dreambooth", "https://github.com/d8ahazard/sd_dreambooth_extension": "https://github.com/d8ahazard/sd_dreambooth_extension", - "unknown": "desconhecido", + "stable-diffusion-webui-depthmap-script": "stable-diffusion-webui-depthmap-script", + "https://github.com/thygate/stable-diffusion-webui-depthmap-script.git": "https://github.com/thygate/stable-diffusion-webui-depthmap-script.git", + "stable-diffusion-webui-embedding-editor": "stable-diffusion-webui-embedding-editor", + "https://github.com/CodeExplode/stable-diffusion-webui-embedding-editor.git": "https://github.com/CodeExplode/stable-diffusion-webui-embedding-editor.git", + "stable-diffusion-webui-localization-it_IT": "stable-diffusion-webui-localization-it_IT", + "https://github.com/Harvester62/stable-diffusion-webui-localization-it_IT": "https://github.com/Harvester62/stable-diffusion-webui-localization-it_IT", "stable-diffusion-webui-localization-pt_BR": "stable-diffusion-webui-localization-pt_BR", "https://github.com/M-art-ucci/stable-diffusion-webui-localization-pt_BR": "https://github.com/M-art-ucci/stable-diffusion-webui-localization-pt_BR", + "stable-diffusion-webui-nsfw-censor": "stable-diffusion-webui-nsfw-censor", + "https://github.com/AUTOMATIC1111/stable-diffusion-webui-nsfw-censor.git": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-nsfw-censor.git", + "training-picker": "training-picker", + "https://github.com/Maurdekye/training-picker": "https://github.com/Maurdekye/training-picker", + "built-in": "built-in", + "ScuNET": "ScuNET", + "SwinIR": "SwinIR", + "prompt-bracket-checker": "prompt-bracket-checker", "Load from:": "Carregar de:", "Extension index URL": "Índice de extensão URL", "Hide extensions with tags": "Esconder extensões com os rótulos", "script": "script", "ads": "ads", "localization": "localização", + "installed": "instalado", "URL for extension's git repository": "URL para repositório git da extensão", "Local directory name": "Nome do diretório local", "Install": "Instalar", + "Checkpoint em Gradiente": "Checkpoint em Gradiente", "Prompt (press Ctrl+Enter or Alt+Enter to generate)": "Prompt (apertar Ctrl+Enter ou Alt+Enter para gerar)", "Negative prompt (press Ctrl+Enter or Alt+Enter to generate)": "Prompt Negativo (apertar Ctrl+Enter ou Alt+Enter para gerar)", - "Add a random artist to the prompt.": "Adicionar um artista aleatório para o prompt.", - "Read generation parameters from prompt or last generation if prompt is empty into user interface.": "Lê os parâmetros de geração do prompt ou da última geraçao, caso o prompt esteja vazio.", - "Save style": "Salva um estilo de prompt.", - "Apply selected styles to current prompt": "Aplica o estilo para o prompt atual.", - "Stop processing current image and continue processing.": "Pula a imagem sendo gerada e vai para a próxima.", - "Stop processing images and return any results accumulated so far.": "Interrompe o processo e mostra o que foi gerado até então.", - "Style to apply; styles have components for both positive and negative prompts and apply to both": "Estilo para aplicar; também serve para o prompt negativo e vai preencher se usado.", - "Do not do anything special": "Não faça nada de especial", - "Which algorithm to use to produce the image": "O tipo de algoritmo para gerar imagens.", - "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 - cria mais variações para as imagens em diferentes passos. Mais que 40 passos cancela o efeito.", - "Denoising Diffusion Implicit Models - best at inpainting": "Denoising Diffusion Implicit Models - Funciona melhor para inpainting.", - "Produce an image that can be tiled.": "Produz uma imagem que pode ser ladrilhada.", - "Use a two step process to partially create an image at smaller resolution, upscale, and then improve details in it without changing composition": "Cria um processo em duas etapas, com uma imagem em baixa qualidade primeiro, aumenta a imagem e refina os detalhes sem alterar a composição da imagem", - "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.": "Quanto o algoritmo deve manter da imagem original. Em 0, nada muda. Em 1 o algoritmo ignora a imagem original. Valores menores que 1.0 demoram mais.", - "How many batches of images to create": "Quantos lotes de imagens criar", - "How many image to create in a single batch": "Quantas imagens criar em um único lote", - "Classifier Free Guidance Scale - how strongly the image should conform to prompt - lower values produce more creative results": "Classifier Free Guidance Scale - Quanto maior o valor, mais segue o prompt e quanto menor, menor segue.", - "A value that determines the output of random number generator - if you create an image with same parameters and seed as another image, you'll get the same result": "Codigo de geração de uma imagem - criando uma imagem com os mesmos parâmetros e seed trazem o mesmo resultado.", - "Set seed to -1, which will cause a new random number to be used every time": "Define seed como -1, deixando o valor que vai aparecer como aleatório.", - "Reuse seed from last generation, mostly useful if it was randomed": "Reutilizar a seed da última geração, útil principalmente se ela foi aleatória", - "Seed of a different picture to be mixed into the generation.": "Seed de uma imagem diferente é misturada na geração.", - "How strong of a variation to produce. At 0, there will be no effect. At 1, you will get the complete picture with variation seed (except for ancestral samplers, where you will just get something).": "Qual a variação a ser gerada. Em 0, não tem efeito. Em 1, gera uma imagem completa com a variação de seed, (exceto com amostragens a).", - "Make an attempt to produce a picture similar to what would have been produced with same seed at specified resolution": "Tenta gerar uma imagem similar ao que teria sido feito com a mesma seed em dimensões especifica.", - "Separate values for X axis using commas.": "Separa os valores para o eixo X usando vírgulas.", - "Separate values for Y axis using commas.": "Separa os valores para o eixo Y usando vírgulas.", - "Write image to a directory (default - log/images) and generation parameters into csv file.": "Salva a imagem no diretório padrão ou escolhido e cria um arquivo csv com os parâmetros da geração.", - "Open images output directory": "Abre o diretório de saída de imagens.", - "How much to blur the mask before processing, in pixels.": "Transição do contorno da máscara, em pixels.", - "What to put inside the masked area before processing it with Stable Diffusion.": "O que vai dentro da máscara antes de processá-la com Stable Diffusion.", - "fill it with colors of the image": "Preenche usando as cores da imagem.", - "keep whatever was there originally": "manter usando o que estava lá originalmente", - "fill it with latent space noise": "Preenche com ruídos do espaço latente.", - "fill it with latent space zeroes": "Preenche com zeros do espaço latente.", - "Upscale masked region to target resolution, do inpainting, downscale back and paste into original image": "Faz ampliação na região com máscara para atingir a resolução desejada, faz inpainting, faz downscale para voltar à resolução original e cola na imagem original", - "Resize image to target resolution. Unless height and width match, you will get incorrect aspect ratio.": "Redimensiona a imagem para a resolução desejada. A menos que a altura e a largura sejam iguais, você obterá uma proporção incorreta.", - "Resize the image so that entirety of target resolution is filled with the image. Crop parts that stick out.": "Redimensiona a imagem para que toda a resolução desejada seja preenchida com a imagem. Corta as partes que ficaram pra fora.", - "Resize the image so that entirety of image is inside target resolution. Fill empty space with image's colors.": "Redimensiona a imagem para que toda a imagem esteja dentro da resolução desejada. Preenche o espaço vazio com as cores da imagem.", - "How many times to repeat processing an image and using it as input for the next iteration": "Número de vezes que vai repetir o processamento da imagem e usar como entrada para a próxima iteração", - "In loopback mode, on each loop the denoising strength is multiplied by this value. <1 means decreasing variety so your sequence will converge on a fixed picture. >1 means increasing variety so your sequence will become more and more chaotic.": "No modo de loopback, em cada loop a força do denoise é multiplicado por este valor. <1 significa diminuir a variedade para que sua sequência converta em uma imagem fixa. >1 significa aumentar a variedade para que sua sequência se torne cada vez mais caótica.", - "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.": "Para ampliação SD, quantidade de sobreposição em pixels que deve haver entre os ladrilhos. Os ladrilhos se sobrepõem para que, quando forem mesclados de volta em uma imagem, não haja linhas de junção claramente visíveis.", "A directory on the same machine where the server is running.": "Um diretório na mesma máquina onde o servidor está rodando.", "Leave blank to save images to the default path.": "Deixar em branco para salvar imagens no caminho padrão.", - "Result = A * (1 - M) + B * M": "Resultado = A * (1 - M) + B * M", - "Result = A + (B - C) * M": "Resultado = A + (B - C) * M", "1st and last digit must be 1. ex:'1, 2, 1'": "Primeiro e último dígito precisam ser 1. ex:`1, 2, 1`", "Path to directory with input images": "Caminho para o diretório com imagens de entrada", "Path to directory where to write outputs": "Caminho para o diretório para gravar as saídas", + "Enter a model name for saving checkpoints and lora models.": "Inserir um nome de modelo para salvar os chekpoints e modelos lora.", + "runwayml/stable-diffusion-v1-5": "runwayml/stable-diffusion-v1-5", + "Leave blank to use base model VAE.": "Deixe em branco para usar o modelo VAR base.", "Path to JSON file with concepts to train.": "Caminho para o arquivo JSON com os conceitos a serem treinados.", - "Path to directory with classification images": "Caminho para o diretório com as imagens de classificação", - "how fast should the training go. Low values will take longer to train, high values may fail to converge (not generate accurate results) and/or may break the embedding (This has happened if you see Loss: nan in the training info textbox. If this happens, you need to manually restore your embedding from an older not-broken backup).\n\nYou can set a single numeric value, or multiple learning rates using the syntax:\n\n rate_1:max_steps_1, rate_2:max_steps_2, ...\n\nEG: 0.005:100, 1e-3:1000, 1e-5\n\nWill train with rate of 0.005 for first 100 steps, then 1e-3 until 1000 steps, then 1e-5 for all remaining steps.": "Quão rápido o treinamento deve ir. Valores baixos levam mais tempo para treinar, valores altos podem causar falha na conversão (não gerar resultados precisos) e/ou podem quebrar a incorporação (Isso aconteceu se você ver Perda: nan na informação de caixa de texto do treinamento. Se isso acontecer, você precisa restaurar manualmente sua incorporação de um backup anterior que não esteja quebrado). \n\nVocê pode configurar um valor numérico único, ou múltiplas taxas de aprendizagem usando a sintaxe: \n\n rate_1:max_steps_1, rate_2:max_steps_2, ...\n\nEG: 0.005:100, 1e-3:1000, 1e-5\n\nVai treinar com a taxa de 0.005 para os primeiros 100 passos, então 1e-3 até 1000 passos, então 1e-5 para todos os passos restantes.", - "Leave blank to use instance prompt.": "Leave blank to use instance prompt.", - "Use following tags to define how filenames for images are chosen: [steps], [cfg], [prompt], [prompt_no_styles], [prompt_spaces], [width], [height], [styles], [sampler], [seed], [model_hash], [prompt_words], [date], [datetime], [datetime], [datetime