Nekochu commited on
Commit
4f0eee1
·
1 Parent(s): eaaf713

fix model filename mismatch, lighter neg prompt

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. app.py +1 -1
Dockerfile CHANGED
@@ -40,7 +40,7 @@ RUN chmod +x /app/sd-cli
40
  RUN mkdir -p /app/models
41
 
42
  # Z-Anime distill 4-step Q5_0 GGUF (~4.23GB) - converted by WeReCooking
43
- RUN curl -fL --retry 3 --retry-delay 5 -o /app/models/z-anime-4step-q5_0.gguf \
44
  "https://huggingface.co/WeReCooking/Z-Anime-4step-GGUF/resolve/main/z-anime-distill-4step-q5_0.gguf"
45
 
46
  # Qwen3-4B text encoder IQ4_XS GGUF (~2.29GB) - smaller for 18GB RAM
 
40
  RUN mkdir -p /app/models
41
 
42
  # Z-Anime distill 4-step Q5_0 GGUF (~4.23GB) - converted by WeReCooking
43
+ RUN curl -fL --retry 3 --retry-delay 5 -o /app/models/z-anime-distill-4step-q5_0.gguf \
44
  "https://huggingface.co/WeReCooking/Z-Anime-4step-GGUF/resolve/main/z-anime-distill-4step-q5_0.gguf"
45
 
46
  # Qwen3-4B text encoder IQ4_XS GGUF (~2.29GB) - smaller for 18GB RAM
app.py CHANGED
@@ -193,7 +193,7 @@ def gradio_main():
193
  prompt_input = gr.Textbox(label="Prompt", lines=3,
194
  placeholder="anime girl with silver hair, fantasy armor, dramatic lighting, beautiful background art, professional anime illustration quality, cinematic composition, detailed shading, high quality anime art.")
195
  neg_input = gr.Textbox(label="Negative Prompt", lines=2,
196
- value="worst quality, low quality, lowres, blurry, bad anatomy, deformed hands, extra fingers, fused fingers, missing fingers, bad proportions, wrong proportions, extra limbs, broken limbs, duplicate body parts, asymmetrical eyes, distorted face, warped features, poorly drawn face, mutated, extra eyes, cropped head, cut-off body, bad framing, jpeg artifacts, compression artifacts, watermark, logo, signature, text, error, noisy, oversmoothed, muddy colors, background clutter, censored, 3d, chibi, character doll, sepia, high contrast")
197
  with gr.Row():
198
  res_input = gr.Dropdown(choices=RESOLUTIONS, value="512x512", label="Resolution")
199
  cfg_input = gr.Slider(minimum=1.0, maximum=1.5, value=1.0, step=0.1, label="CFG (1.0 best, max 1.5)")
 
193
  prompt_input = gr.Textbox(label="Prompt", lines=3,
194
  placeholder="anime girl with silver hair, fantasy armor, dramatic lighting, beautiful background art, professional anime illustration quality, cinematic composition, detailed shading, high quality anime art.")
195
  neg_input = gr.Textbox(label="Negative Prompt", lines=2,
196
+ value="worst quality, low quality, lowres, blurry, bad anatomy, deformed hands, extra fingers, missing fingers, watermark, signature, text, error, censored")
197
  with gr.Row():
198
  res_input = gr.Dropdown(choices=RESOLUTIONS, value="512x512", label="Resolution")
199
  cfg_input = gr.Slider(minimum=1.0, maximum=1.5, value=1.0, step=0.1, label="CFG (1.0 best, max 1.5)")